1 About

1.1 Contributions

Please note that authorship is alphabetical. Contributions are listed below - see github for details and who to blame for what :-).

Ben Anderson ( @dataknut)

1.3 Citation

If you wish to refer to any of the material from this report please cite as:

  • Anderson, B., (2019) Water Quality in New Zealand: Exploring “official” data , University of Southampton: Southampton, UK.

Report circulation:

  • Public.

Report purpose:

  • to explore official New Zealand Water Quality data

This work has received funding from the European Union’s Horizon 2020 research and innovation programme under the Marie Skłodowska-Curie grant agreement No 700386 (SPATIALEC).

This work is (c) 2019 the University of Southampton.

2 Introduction

3 MfE data

Data source: https://data.mfe.govt.nz/data/category/fresh-water/

Data file: mfe-river-water-quality-trends-20082017-19982017-and-19902017-CSV/river-water-quality-trends-20082017-19982017-and-1990-2017-raw-data.csv

df <- paste0(dPath, dataFile)

mfeWqDT <- data.table::fread(df)

Overall there are:

  • 1107 sites

This isn’t really trend or raw data - it is a single record per site with indicator of change via a trend slope coefficient or a single % change value. We were looking for the data used to create the time-series plots in (for example) https://www.lawa.org.nz/explore-data/otago-region/river-quality/manuherikia-river/manuherikia-at-ophir/

There are also data quality & missing data issues (see Statistical Annex). It’s noticeable for example that, irrespective of the indicator, over half of stations were thought to have insufficient data to determine trend direction. This was true of 70% of stations for ECOLI and 78% for the Macroinvertebrate Community Index (MCI).

tq <- table(mfeWqDT$TrendCategory, mfeWqDT$npID)

kableExtra::kable(addmargins(tq), caption = "Trend category counts") %>% kable_styling()
Table 3.1: Trend category counts
CLAR DRP ECOLI MCI NH4N NO3N TN TP TURB Sum
Decreasing 82 355 167 132 428 318 204 415 137 2238
Increasing 259 245 118 79 79 266 211 91 173 1521
Insufficient Data 426 630 642 764 713 593 499 578 567 5412
Sum 767 1230 927 975 1220 1177 914 1084 877 9171
kableExtra::kable(100 * prop.table(tq, 2), digits = 2, caption = "Trend category %") %>% 
    kable_styling()
Table 3.1: Trend category %
CLAR DRP ECOLI MCI NH4N NO3N TN TP TURB
Decreasing 10.69 28.86 18.02 13.54 35.08 27.02 22.32 38.28 15.62
Increasing 33.77 19.92 12.73 8.10 6.48 22.60 23.09 8.39 19.73
Insufficient Data 55.54 51.22 69.26 78.36 58.44 50.38 54.60 53.32 64.65
plotDT <- mfeWqDT[, .(meanAnnualSenSlope = mean(AnnualSenSlope, na.rm = TRUE)), 
    keyby = .(npID, TrendCategory)]
ggplot2::ggplot(plotDT, aes(x = TrendCategory, y = meanAnnualSenSlope, group = npID, 
    fill = npID)) + geom_col(position = "dodge")
Test data values by indicator

Figure 3.1: Test data values by indicator

plotDT <- mfeWqDT[, .(meanPercent_annual_change = mean(Percent_annual_change, 
    na.rm = TRUE)), keyby = .(npID, TrendCategory)]
ggplot2::ggplot(plotDT, aes(x = TrendCategory, y = meanPercent_annual_change, 
    group = npID, fill = npID)) + geom_col(position = "dodge")
Test data values by indicator

Figure 3.2: Test data values by indicator

Now try to plot individual trends. This is nasty…

Ideally we want to sort by value within pollutant and ‘fade out’ the ones with insufficient data. Colour coding needs to be careful - for some such as MCI an increase is ‘good’.

p <- ggplot2::ggplot(mfeWqDT, aes(y = sID,
                               x = Percent_annual_change, 
                               alpha = forcats::fct_rev(TrendCategory), # reverse so lightest alpha == least data
                               colour = forcats::fct_rev(TrendCategory)
                               )
                     ) +
  geom_vline(xintercept = 0, colour = "red") +
  geom_point() +
  guides(alpha = guide_legend(title = "Trend and quality code")
         ) +
  guides(colour = guide_legend(title = "Trend and quality code")
         ) +
  scale_color_viridis(discrete = TRUE) +
  theme(legend.position = "bottom") +
  facet_grid(. ~ npID)

p
Site level trend plots

Figure 3.3: Site level trend plots

4 LAWA data

So this is the trend data we were after…

Also downloadable from:

f <- "LAWA Rivers_DownloadWQRawData_Oct2018.csv"
p <- "~/Data/NZ_LAWA/waterQuality/"

df <- paste0(p, f)

LAWA_DT <- data.table::fread(df)

Using:

  • LAWA Rivers_DownloadWQRawData_Oct2018.csv

Overall there are:

  • 899 sites spread across
  • 17 regions
names(LAWA_DT)
##  [1] "LawaSiteID" "Site"       "parameter"  "Date"       "RawValue"  
##  [6] "Symbol"     "Value"      "Region"     "Agency"     "License"   
## [11] "Ownership"  "Disclaimer"
LAWA_DT$Ownership <- NULL  # not used
LAWA_DT$License <- NULL  # not used
LAWA_DT$Disclaimer <- NULL  # not used

LAWA_DT[, `:=`(RawValue, as.numeric(RawValue))]
LAWA_DT[, `:=`(region.site, paste0(Region, ".", Site))]

LAWA_DT[, `:=`(ba_date, lubridate::dmy(Date))]

h <- head(LAWA_DT)

kableExtra::kable(h, caption = "First 6 rows of LAWA data") %>% kable_styling()
Table 4.1: First 6 rows of LAWA data
LawaSiteID Site parameter Date RawValue Symbol Value Region Agency region.site ba_date
ARC-00037 Papakura @ Alfriston/Ardmore Rd DRP 1-Aug-17 0.012 0.012 Auckland AC Auckland.Papakura @ Alfriston/Ardmore Rd 2017-08-01
ARC-00037 Papakura @ Alfriston/Ardmore Rd NH4 1-Aug-17 0.040 0.040 Auckland AC Auckland.Papakura @ Alfriston/Ardmore Rd 2017-08-01
ARC-00037 Papakura @ Alfriston/Ardmore Rd TP 1-Aug-17 0.052 0.052 Auckland AC Auckland.Papakura @ Alfriston/Ardmore Rd 2017-08-01
ARC-00037 Papakura @ Alfriston/Ardmore Rd TON 1-Aug-17 0.800 0.800 Auckland AC Auckland.Papakura @ Alfriston/Ardmore Rd 2017-08-01
ARC-00037 Papakura @ Alfriston/Ardmore Rd TN 1-Aug-17 1.160 1.160 Auckland AC Auckland.Papakura @ Alfriston/Ardmore Rd 2017-08-01
ARC-00037 Papakura @ Alfriston/Ardmore Rd TURB 1-Aug-17 21.000 21.000 Auckland AC Auckland.Papakura @ Alfriston/Ardmore Rd 2017-08-01
p <- makeTilePlot(LAWA_DT[parameter == "ECOLI"], yvar = "Value", byvar = "Site")
p + labs(y = "ECOLI", caption = "Observations for E.Coli") + theme(legend.position = "bottom") + 
    guides(fill = guide_legend(title = "E.Coli"))

p <- makeTilePlot(LAWA_DT[parameter == "NH4"], yvar = "Value", byvar = "Site")
p + labs(y = "NH4", caption = "Observations for NH4") + theme(legend.position = "bottom") + 
    guides(fill = guide_legend(title = "NH4"))

st <- summary(LAWA_DT)

kableExtra::kable(st, caption = "Summary of LAWA data") %>% kable_styling()
Table 4.2: Summary of LAWA data
LawaSiteID Site parameter Date RawValue Symbol Value Region Agency region.site ba_date
Length:696184 Length:696184 Length:696184 Length:696184 Min. : -21 Length:696184 Min. : -21 Length:696184 Length:696184 Length:696184 Min. :2008-01-03
Class :character Class :character Class :character Class :character 1st Qu.: 0 Class :character 1st Qu.: 0 Class :character Class :character Class :character 1st Qu.:2011-02-22
Mode :character Mode :character Mode :character Mode :character Median : 1 Mode :character Median : 1 Mode :character Mode :character Mode :character Median :2013-10-09
NA NA NA NA Mean : 132 NA Mean : 124 NA NA NA Mean :2013-07-01
NA NA NA NA 3rd Qu.: 7 NA 3rd Qu.: 7 NA NA NA 3rd Qu.:2015-12-09
NA NA NA NA Max. :11500000 NA Max. :11500000 NA NA NA Max. :2018-07-17
NA NA NA NA NA’s :72101 NA NA’s :9232 NA NA NA NA’s :8970

Figure 4.1 shows the distributon of NH4 over time for each site split by region.

# looks like daily data with gaps
p <- makePointPlot(LAWA_DT[parameter == "NH4"], yvar = "Value", byvar = "Site")

p <- p + labs(y = "NH4", caption = "NH4") + guides(colour = guide_legend(title = "NH4")) + 
    theme(legend.position = "none") + theme(strip.text.y = element_text(angle = 0)) + 
    facet_grid(Region ~ .)

p
Test NH4 data values by date and site

Figure 4.1: Test NH4 data values by date and site

5 Statistical Annex

5.1 MfE ‘raw’ data

skimr::skim(mfeWqDT)
## Skim summary statistics
##  n obs: 9171 
##  n variables: 42 
## 
## ── Variable type:character ───────────────────────────────────────────────────────────────────────
##        variable missing complete    n min max empty n_unique
##    AnalysisNote       0     9171 9171   2  52     0        9
##         climate       0     9171 9171   2   2     0        6
##   DirectionConf       0     9171 9171   6  22     0       10
##       landcover       0     9171 9171   1   2     0        8
##            npID       0     9171 9171   2   5     0        9
##          Season       0     9171 9171   5   8     0        3
##             sID       0     9171 9171   8  11     0     1107
##      src_of_flw       0     9171 9171   1   2     0        5
##   TrendCategory       0     9171 9171  10  17     0        3
##  TrendDirection       0     9171 9171  10  13     0        4
## 
## ── Variable type:integer ─────────────────────────────────────────────────────────────────────────
##         variable missing complete    n       mean         sd     p0
##                D     123     9048 9171    3834.87    8388.81     15
##  no_censorlevels       0     9171 9171       0.64       1.05      0
##             nObs       0     9171 9171     119.47      89.47      5
##          nzreach       0     9171 9171 8353123.65 4569119.66  1e+06
##        nzsegment       0     9171 9171 8463644.58 4596199.64  1e+06
##           Period       0     9171 9171      13.97       6.03     10
##                S     123     9048 9171    -176.53    1953.93 -24882
##                X       0     9171 9171    1947.94    1673.87      1
##      p25     p50        p75        p100     hist
##      463     703 4186       56280       ▇▁▁▁▁▁▁▁
##        0       0    1          21       ▇▁▁▁▁▁▁▁
##       40     117  120         336       ▆▁▇▁▁▃▁▁
##    3e+06   8e+06    1.3e+07     1.5e+07 ▃▇▂▆▂▂▆▆
##  3149001 8206040    1.3e+07     1.5e+07 ▃▇▂▃▅▂▇▆
##       10      10   20          28       ▇▁▁▁▃▁▁▁
##     -133     -14   50       26493       ▁▁▁▇▁▁▁▁
##      473    1447 3290.5      5583       ▇▃▃▂▂▂▂▂
## 
## ── Variable type:logical ─────────────────────────────────────────────────────────────────────────
##  variable missing complete    n mean                       count
##  Seasonal       0     9171 9171 0.58 TRU: 5278, FAL: 3893, NA: 0
## 
## ── Variable type:numeric ─────────────────────────────────────────────────────────────────────────
##               variable missing complete    n        mean        sd
##         AnnualSenSlope     124     9047 9171      -0.16       5.78
##              Intercept     124     9047 9171      36.97     121.26
##                    lat       0     9171 9171     -40.86       3.09
##                    Lci     124     9047 9171      -1.58       9.49
##                   long       0     9171 9171     173.75       2.64
##                 Median     123     9048 9171      35.61     113.73
##                  nzmge       0     9171 9171 2581624.68  218056.88
##                  nzmgn       0     9171 9171   6e+06     342744.62
##                  nztme       0     9171 9171 1672489.23  219604.57
##                  nztmn       0     9171 9171 5473697.5   344920.76
##                      p     123     9048 9171       0.29       0.32
##  Percent_annual_change     124     9047 9171      -0.65       4.25
##            Probability     123     9048 9171       0.57       0.38
##         Probabilitymax     124     9047 9171       0.62       0.38
##         Probabilitymin     124     9047 9171       0.5        0.39
##          prop_censored       0     9171 9171       0.076      0.18
##            prop_unique       0     9171 9171       0.58       0.25
##        Sen_Probability     124     9047 9171       0.57       0.39
##               Sen_VarS     124     9047 9171  147300.04  533409.77
##                    tau     123     9048 9171      -0.031      0.19
##                    Uci     124     9047 9171       1.1        7.77
##                   VarS     123     9048 9171  146978.2   533006.67
##                      Z     123     9048 9171      -0.38       2.75
##             p0          p25           p50           p75       p100
##     -201.49         -0.005       -5.9e-06       0.0023      135.16
##     -333.91          0.02         0.36          3.89       2416.87
##      -46.63        -43.61       -40.26        -38.29        -35.04
##     -317.46         -0.076       -0.0017       -2.5e-05      62.14
##      167.45        172.04       174.66        175.69        178.43
##    5e-04             0.02         0.38          4.04       3000   
##  2080600       2427919      2658279       2746800         3e+06   
##  5390200       5733145.39   6100300       6316100       6684603   
##  1175003       1519856.81   1749951.5     1836751.23    2078090   
##  4828129.84    5170669.03   5538610.78    5761606.95    6122361.21
##    3e-68             0.0084       0.16          0.52          1   
##      -80.99         -1.82        -0.025         0.87         24.91
##        1.5e-68       0.16         0.65          0.96          1   
##    1e-67             0.23         0.78          0.99          1   
##        0             0.063        0.53          0.92          1   
##        0             0            0             0.03          0.98
##        0.0083        0.4          0.62          0.78          1   
##        1.5e-68       0.16         0.67          0.97          1   
##       28.33       1267.17      4221.67      30193.83    4233425.33
##       -0.79         -0.15        -0.033         0.08          0.8 
##      -99.32          0            0.001         0.062       242.93
##       28.33       1245.33      4183.17      30167.5     4233425.33
##      -13.39         -1.77        -0.39          1            17.46
##      hist
##  ▁▁▁▁▇▁▁▁
##  ▇▂▁▁▁▁▁▁
##  ▅▅▅▅▆▇▆▂
##  ▁▁▁▁▁▁▇▁
##  ▂▂▃▃▃▇▆▁
##  ▇▁▁▁▁▁▁▁
##  ▂▂▂▃▃▇▃▁
##  ▅▃▅▅▆▇▅▂
##  ▂▂▂▃▃▇▃▁
##  ▅▅▅▅▇▇▆▂
##  ▇▂▂▁▁▁▁▁
##  ▁▁▁▁▁▃▇▁
##  ▅▂▁▂▂▂▂▇
##  ▃▁▁▁▁▁▂▇
##  ▇▂▂▂▂▂▂▇
##  ▇▁▁▁▁▁▁▁
##  ▂▃▃▅▆▇▇▅
##  ▅▂▁▁▁▂▂▇
##  ▇▁▁▁▁▁▁▁
##  ▁▁▃▇▆▂▁▁
##  ▁▁▇▁▁▁▁▁
##  ▇▁▁▁▁▁▁▁
##  ▁▁▃▇▂▁▁▁
tn <- mfeWqDT[!is.na(AnalysisNote) & AnalysisNote != "ok", .(sID, npID, AnalysisNote)]

kableExtra::kable(tn, caption = "Analysis notes")
Table 5.1: Analysis notes
sID npID AnalysisNote
ARC-00001 NH4N WARNING: Sen slope influenced by censored values
ARC-00004 DRP WARNING: Sen slope based on tied non-censored values
ARC-00006 TP WARNING: Sen slope based on tied non-censored values
ARC-00011 DRP WARNING: Sen slope based on tied non-censored values
ARC-00015 DRP WARNING: Sen slope based on tied non-censored values
ARC-00016 DRP WARNING: Sen slope based on tied non-censored values
ARC-00017 DRP WARNING: Sen slope influenced by censored values
ARC-00017 TURB WARNING: Sen slope based on tied non-censored values
ARC-00019 TP WARNING: Sen slope based on tied non-censored values
ARC-00024 DRP WARNING: Sen slope influenced by censored values
ARC-00024 NO3N WARNING: Sen slope based on tied non-censored values
ARC-00026 DRP WARNING: Sen slope based on tied non-censored values
ARC-00027 ECOLI WARNING: Sen slope influenced by censored values
ARC-00027 NH4N WARNING: Sen slope influenced by censored values
ARC-00030 NH4N WARNING: Sen slope influenced by censored values
ARC-00030 NO3N WARNING: Sen slope based on tied non-censored values
ARC-00031 DRP WARNING: Sen slope influenced by censored values
ARC-00034 DRP WARNING: Sen slope based on tied non-censored values
CCC-00001 NH4N WARNING: Sen slope influenced by censored values
CCC-00001 TP WARNING: Sen slope influenced by censored values
CCC-00002 ECOLI WARNING: Sen slope based on tied non-censored values
CCC-00002 TP WARNING: Sen slope influenced by censored values
CCC-00003 NH4N WARNING: Sen slope influenced by censored values
CCC-00003 TP WARNING: Sen slope influenced by censored values
CCC-00004 NH4N WARNING: Sen slope influenced by censored values
CCC-00005 TP WARNING: Sen slope influenced by censored values
CCC-00007 TP WARNING: Sen slope influenced by censored values
CCC-00008 ECOLI WARNING: Sen slope based on tied non-censored values
CCC-00009 TP WARNING: Sen slope influenced by censored values
CCC-00013 TURB WARNING: Sen slope based on tied non-censored values
CCC-00015 ECOLI WARNING: Sen slope influenced by censored values
CCC-00022 ECOLI WARNING: Sen slope influenced by censored values
CCC-00028 NH4N WARNING: Sen slope influenced by censored values
CCC-00029 NH4N WARNING: Sen slope influenced by censored values
CCC-00029 TURB WARNING: Sen slope based on tied non-censored values
CCC-00030 NH4N WARNING: Sen slope influenced by censored values
CCC-00031 DRP WARNING: Sen slope based on tied non-censored values
CCC-00032 NH4N WARNING: Sen slope based on tied non-censored values
CCC-00035 NH4N WARNING: Sen slope based on tied non-censored values
CCC-00038 TURB WARNING: Sen slope based on tied non-censored values
CCC-00039 NH4N WARNING: Sen slope based on two censored values
CCC-00039 TP WARNING: Sen slope influenced by censored values
CCC-00041 NO3N WARNING: Sen slope influenced by censored values
EBOP-00003 ECOLI WARNING: Sen slope based on tied non-censored values
EBOP-00003 NH4N WARNING: Sen slope based on tied non-censored values
EBOP-00003 TP WARNING: Sen slope based on tied non-censored values
EBOP-00007 DRP WARNING: Sen slope based on tied non-censored values
EBOP-00007 TP WARNING: Sen slope based on tied non-censored values
EBOP-00010 NH4N WARNING: Sen slope based on tied non-censored values
EBOP-00012 DRP WARNING: Sen slope based on tied non-censored values
EBOP-00026 DRP WARNING: Sen slope based on tied non-censored values
EBOP-00026 NO3N WARNING: Sen slope based on tied non-censored values
EBOP-00042 NH4N WARNING: Sen slope based on tied non-censored values
EBOP-00045 DRP WARNING: Sen slope based on tied non-censored values
EBOP-00045 NH4N WARNING: Sen slope based on tied non-censored values
EBOP-00045 NO3N WARNING: Sen slope based on tied non-censored values
EBOP-00048 NH4N WARNING: Sen slope based on tied non-censored values
EBOP-00049 DRP WARNING: Sen slope based on tied non-censored values
EBOP-00049 NH4N WARNING: Sen slope based on tied non-censored values
EBOP-00049 TP WARNING: Sen slope based on tied non-censored values
EBOP-00051 DRP WARNING: Sen slope based on tied non-censored values
EBOP-00051 ECOLI WARNING: Sen slope based on tied non-censored values
EBOP-00051 NH4N WARNING: Sen slope based on tied non-censored values
EBOP-00051 NO3N WARNING: Sen slope based on tied non-censored values
EBOP-00051 TP WARNING: Sen slope based on tied non-censored values
EBOP-00053 DRP WARNING: Sen slope based on tied non-censored values
EBOP-00053 TP WARNING: Sen slope based on tied non-censored values
ECAN-00002 TP WARNING: Sen slope based on tied non-censored values
ECAN-00003 TN WARNING: Sen slope influenced by censored values
ECAN-00003 TP WARNING: Sen slope influenced by censored values
ECAN-00003 TURB WARNING: Sen slope influenced by censored values
ECAN-00007 DRP WARNING: Sen slope influenced by censored values
ECAN-00007 NO3N WARNING: Sen slope influenced by censored values
ECAN-00008 NH4N WARNING: Sen slope influenced by censored values
ECAN-00008 TN WARNING: Sen slope influenced by censored values
ECAN-00008 TP WARNING: Sen slope influenced by censored values
ECAN-00010 NH4N WARNING: Sen slope influenced by censored values
ECAN-00010 NO3N WARNING: Sen slope influenced by censored values
ECAN-00014 NH4N WARNING: Sen slope based on two censored values
ECAN-00014 TP WARNING: Sen slope influenced by censored values
ECAN-00018 DRP WARNING: Sen slope influenced by censored values
ECAN-00018 NH4N WARNING: Sen slope influenced by censored values
ECAN-00018 TP WARNING: Sen slope influenced by censored values
ECAN-00020 DRP WARNING: Sen slope influenced by censored values
ECAN-00020 NH4N WARNING: Sen slope influenced by censored values
ECAN-00020 TN WARNING: Sen slope influenced by censored values
ECAN-00020 TP WARNING: Sen slope based on two censored values
ECAN-00025 DRP WARNING: Sen slope influenced by censored values
ECAN-00025 NH4N WARNING: Sen slope influenced by censored values
ECAN-00025 TP WARNING: Sen slope based on two censored values
ECAN-00026 DRP WARNING: Sen slope influenced by censored values
ECAN-00026 NH4N WARNING: Sen slope influenced by censored values
ECAN-00026 TN WARNING: Sen slope influenced by censored values
ECAN-00026 TP WARNING: Sen slope based on two censored values
ECAN-00027 NH4N WARNING: Sen slope influenced by censored values
ECAN-00027 TN WARNING: Sen slope based on tied non-censored values
ECAN-00028 DRP WARNING: Sen slope based on tied non-censored values
ECAN-00034 NH4N WARNING: Sen slope influenced by censored values
ECAN-00034 TN WARNING: Sen slope based on tied non-censored values
ECAN-00034 TP WARNING: Sen slope influenced by censored values
ECAN-00036 NH4N WARNING: Sen slope influenced by censored values
ECAN-00038 NH4N WARNING: Sen slope influenced by censored values
ECAN-00038 TP WARNING: Sen slope influenced by censored values
ECAN-00040 NH4N WARNING: Sen slope influenced by censored values
ECAN-00042 NH4N WARNING: Sen slope influenced by censored values
ECAN-00046 DRP WARNING: Sen slope influenced by censored values
ECAN-00046 NH4N WARNING: Sen slope influenced by censored values
ECAN-00047 DRP WARNING: Sen slope influenced by censored values
ECAN-00047 NH4N WARNING: Sen slope influenced by censored values
ECAN-00047 TP WARNING: Sen slope influenced by censored values
ECAN-00049 DRP WARNING: Sen slope influenced by censored values
ECAN-00049 ECOLI WARNING: Sen slope based on tied non-censored values
ECAN-00049 NH4N WARNING: Sen slope influenced by censored values
ECAN-00049 TP WARNING: Sen slope based on two censored values
ECAN-00050 DRP WARNING: Sen slope influenced by censored values
ECAN-00050 NH4N WARNING: Sen slope influenced by censored values
ECAN-00050 TN WARNING: Sen slope influenced by censored values
ECAN-00050 TP WARNING: Sen slope influenced by censored values
ECAN-00052 TN WARNING: Sen slope based on tied non-censored values
ECAN-00057 NH4N WARNING: Sen slope influenced by censored values
ECAN-00057 NO3N WARNING: Sen slope based on tied non-censored values
ECAN-00059 NH4N WARNING: Sen slope influenced by censored values
ECAN-00061 NO3N WARNING: Sen slope based on tied non-censored values
ECAN-00061 TN WARNING: Sen slope based on tied non-censored values
ECAN-00065 NH4N WARNING: Sen slope influenced by censored values
ECAN-00065 TP WARNING: Sen slope influenced by censored values
ECAN-00069 NH4N WARNING: Sen slope influenced by censored values
ECAN-00069 TP WARNING: Sen slope influenced by censored values
ECAN-00070 NH4N WARNING: Sen slope influenced by censored values
ECAN-00070 TP WARNING: Sen slope influenced by censored values
ECAN-00071 NH4N WARNING: Sen slope influenced by censored values
ECAN-00071 TP WARNING: Sen slope influenced by censored values
ECAN-00071 TURB WARNING: Sen slope influenced by censored values
ECAN-00072 NH4N WARNING: Sen slope influenced by censored values
ECAN-00079 NH4N WARNING: Sen slope influenced by censored values
ECAN-00079 TN WARNING: Sen slope based on tied non-censored values
ECAN-00080 NH4N WARNING: Sen slope influenced by censored values
ECAN-00081 NH4N WARNING: Sen slope influenced by censored values
ECAN-00082 NH4N WARNING: Sen slope influenced by censored values
ECAN-00083 NH4N WARNING: Sen slope influenced by censored values
ECAN-00083 NO3N WARNING: Sen slope based on tied non-censored values
ECAN-00084 DRP WARNING: Sen slope based on tied non-censored values
ECAN-00084 NH4N WARNING: Sen slope influenced by censored values
ECAN-00084 NO3N WARNING: Sen slope influenced by censored values
ECAN-00085 NH4N WARNING: Sen slope influenced by censored values
ECAN-00086 DRP WARNING: Sen slope based on tied non-censored values
ECAN-00086 NH4N WARNING: Sen slope influenced by censored values
ECAN-00086 TP WARNING: Sen slope influenced by censored values
ECAN-00086 TURB WARNING: Sen slope based on tied non-censored values
ECAN-00088 DRP WARNING: Sen slope influenced by censored values
ECAN-00088 NH4N WARNING: Sen slope influenced by censored values
ECAN-00088 NO3N WARNING: Sen slope based on tied non-censored values
ECAN-00088 TN WARNING: Sen slope based on tied non-censored values
ECAN-00088 TP WARNING: Sen slope based on two censored values
ECAN-00093 NH4N WARNING: Sen slope influenced by censored values
ECAN-00094 DRP WARNING: Sen slope influenced by censored values
ECAN-00094 NH4N WARNING: Sen slope influenced by censored values
ECAN-00094 TN WARNING: Sen slope influenced by censored values
ECAN-00094 TP WARNING: Sen slope influenced by censored values
ECAN-00095 DRP WARNING: Sen slope influenced by censored values
ECAN-00095 ECOLI WARNING: Sen slope influenced by censored values
ECAN-00095 NH4N WARNING: Sen slope influenced by censored values
ECAN-00095 TP WARNING: Sen slope influenced by censored values
ECAN-00097 NO3N WARNING: Sen slope based on tied non-censored values
ECAN-00097 TN WARNING: Sen slope based on tied non-censored values
ECAN-00100 NH4N WARNING: Sen slope influenced by censored values
ECAN-00102 DRP WARNING: Sen slope influenced by censored values
ECAN-00102 NH4N WARNING: Sen slope influenced by censored values
ECAN-00102 TN WARNING: Sen slope influenced by censored values
ECAN-00102 TP WARNING: Sen slope based on two censored values
ECAN-00104 DRP WARNING: Sen slope influenced by censored values
ECAN-00104 NH4N WARNING: Sen slope influenced by censored values
ECAN-00104 TN WARNING: Sen slope influenced by censored values
ECAN-00104 TP WARNING: Sen slope based on two censored values
ECAN-00106 TN WARNING: Sen slope based on tied non-censored values
ECAN-00107 NH4N WARNING: Sen slope influenced by censored values
ECAN-00109 DRP WARNING: Sen slope based on tied non-censored values
ECAN-00109 NH4N WARNING: Sen slope influenced by censored values
ECAN-00109 TP WARNING: Sen slope influenced by censored values
ECAN-00110 TURB WARNING: Sen slope based on tied non-censored values
ECAN-00111 NH4N WARNING: Sen slope influenced by censored values
ECAN-00112 DRP WARNING: Sen slope influenced by censored values
ECAN-00112 ECOLI WARNING: Sen slope based on tied non-censored values
ECAN-00112 NH4N WARNING: Sen slope influenced by censored values
ECAN-00112 TP WARNING: Sen slope influenced by censored values
ECAN-00113 NH4N WARNING: Sen slope influenced by censored values
ECAN-00114 NH4N WARNING: Sen slope influenced by censored values
ECAN-00114 TN WARNING: Sen slope influenced by censored values
ECAN-00115 DRP WARNING: Sen slope influenced by censored values
ECAN-00115 NH4N WARNING: Sen slope influenced by censored values
ECAN-00115 TN WARNING: Sen slope influenced by censored values
ECAN-00115 TP WARNING: Sen slope influenced by censored values
ECAN-00116 NH4N WARNING: Sen slope influenced by censored values
ECAN-00116 TURB WARNING: Sen slope based on tied non-censored values
ECAN-00117 NH4N WARNING: Sen slope influenced by censored values
ECAN-00118 NH4N WARNING: Sen slope influenced by censored values
ECAN-00118 TN WARNING: Sen slope influenced by censored values
ECAN-00118 TP WARNING: Sen slope influenced by censored values
ECAN-00119 DRP WARNING: Sen slope influenced by censored values
ECAN-00119 NH4N WARNING: Sen slope influenced by censored values
ECAN-00119 NO3N WARNING: Sen slope influenced by censored values
ECAN-00119 TN WARNING: Sen slope influenced by censored values
ECAN-00119 TP WARNING: Sen slope based on two censored values
ECAN-00121 NH4N WARNING: Sen slope influenced by censored values
ECAN-00121 TP WARNING: Sen slope influenced by censored values
ECAN-00123 DRP WARNING: Sen slope influenced by censored values
ECAN-00123 NH4N WARNING: Sen slope influenced by censored values
ECAN-00123 NO3N WARNING: Sen slope influenced by censored values
ECAN-00123 TN WARNING: Sen slope influenced by censored values
ECAN-00123 TP WARNING: Sen slope based on tied non-censored values
ECAN-00124 DRP WARNING: Sen slope influenced by censored values
ECAN-00124 ECOLI WARNING: Sen slope influenced by censored values
ECAN-00124 NH4N WARNING: Sen slope influenced by censored values
ECAN-00124 NO3N WARNING: Sen slope based on two censored values
ECAN-00124 TN WARNING: Sen slope influenced by censored values
ECAN-00124 TP WARNING: Sen slope influenced by censored values
ECAN-00128 DRP WARNING: Sen slope influenced by censored values
ECAN-00128 ECOLI Long run of single value in a Season
ECAN-00128 NH4N WARNING: Sen slope influenced by censored values
ECAN-00128 NO3N WARNING: Sen slope based on two censored values
ECAN-00128 TN WARNING: Sen slope influenced by censored values
ECAN-00128 TP WARNING: Sen slope based on two censored values
ECAN-00129 DRP WARNING: Sen slope influenced by censored values
ECAN-00129 ECOLI WARNING: Sen slope influenced by censored values
ECAN-00129 NH4N WARNING: Sen slope influenced by censored values
ECAN-00129 NO3N WARNING: Sen slope based on two censored values
ECAN-00129 TN WARNING: Sen slope influenced by censored values
ECAN-00129 TP WARNING: Sen slope influenced by censored values
ECAN-00130 DRP WARNING: Sen slope influenced by censored values
ECAN-00130 NH4N WARNING: Sen slope influenced by censored values
ECAN-00130 TN WARNING: Sen slope influenced by censored values
ECAN-00130 TP WARNING: Sen slope based on two censored values
ECAN-00134 NH4N WARNING: Sen slope based on two censored values
ECAN-00134 TN WARNING: Sen slope influenced by censored values
ECAN-00134 TP WARNING: Sen slope influenced by censored values
ECAN-00136 DRP WARNING: Sen slope influenced by censored values
ECAN-00136 NH4N WARNING: Sen slope influenced by censored values
ECAN-00136 TN WARNING: Sen slope influenced by censored values
ECAN-00136 TP WARNING: Sen slope influenced by censored values
ECAN-00136 TURB WARNING: Sen slope based on tied non-censored values
ECAN-00137 DRP WARNING: Sen slope influenced by censored values
ECAN-00137 NH4N WARNING: Sen slope influenced by censored values
ECAN-00137 TP WARNING: Sen slope based on two censored values
ECAN-00138 NH4N WARNING: Sen slope influenced by censored values
ECAN-00139 NH4N WARNING: Sen slope influenced by censored values
ECAN-00139 TP WARNING: Sen slope based on two censored values
ECAN-00140 DRP WARNING: Sen slope based on tied non-censored values
ECAN-00140 NH4N WARNING: Sen slope influenced by censored values
ECAN-00148 NH4N WARNING: Sen slope influenced by censored values
ECAN-00149 DRP WARNING: Sen slope based on tied non-censored values
ECAN-00149 NH4N WARNING: Sen slope influenced by censored values
ECAN-00152 NH4N WARNING: Sen slope influenced by censored values
ECAN-00153 NH4N WARNING: Sen slope influenced by censored values
ECAN-00153 TN WARNING: Sen slope influenced by censored values
ECAN-00154 NH4N WARNING: Sen slope influenced by censored values
ECAN-00154 TP WARNING: Sen slope influenced by censored values
ECAN-00154 TURB WARNING: Sen slope influenced by censored values
ECAN-00155 NH4N WARNING: Sen slope influenced by censored values
ECAN-00155 NO3N WARNING: Sen slope based on tied non-censored values
ECAN-00157 NH4N WARNING: Sen slope influenced by censored values
ECAN-00160 NO3N WARNING: Sen slope influenced by censored values
ECAN-00160 TN WARNING: Sen slope influenced by censored values
ECAN-00160 TP WARNING: Sen slope influenced by censored values
ECAN-00160 TURB WARNING: Sen slope based on tied non-censored values
ECAN-00161 NH4N WARNING: Sen slope influenced by censored values
ECAN-00161 NO3N WARNING: Sen slope influenced by censored values
ECAN-00161 TP WARNING: Sen slope based on tied non-censored values
ECAN-00162 DRP WARNING: Sen slope influenced by censored values
ECAN-00162 NH4N WARNING: Sen slope influenced by censored values
ECAN-00162 TN WARNING: Sen slope influenced by censored values
ECAN-00162 TP WARNING: Sen slope influenced by censored values
ECAN-00164 NH4N WARNING: Sen slope influenced by censored values
ECAN-00168 NH4N WARNING: Sen slope influenced by censored values
ECAN-00168 TP WARNING: Sen slope influenced by censored values
ECAN-00172 NH4N WARNING: Sen slope influenced by censored values
ECAN-00173 NH4N WARNING: Sen slope influenced by censored values
ECAN-00173 TP WARNING: Sen slope influenced by censored values
ECAN-00176 DRP WARNING: Sen slope based on tied non-censored values
ECAN-00176 NH4N WARNING: Sen slope influenced by censored values
ECAN-00177 NH4N WARNING: Sen slope influenced by censored values
ECAN-00178 NH4N WARNING: Sen slope influenced by censored values
ECAN-00179 NH4N WARNING: Sen slope influenced by censored values
ECAN-00181 NH4N WARNING: Sen slope influenced by censored values
ECAN-00181 TP WARNING: Sen slope based on two censored values
ECAN-00182 TP WARNING: Sen slope influenced by censored values
ECAN-00189 NH4N WARNING: Sen slope influenced by censored values
ECAN-00190 NH4N WARNING: Sen slope influenced by censored values
ECAN-10086 ECOLI WARNING: Sen slope based on tied non-censored values
ES-00002 DRP WARNING: Sen slope influenced by censored values
ES-00002 NH4N WARNING: Sen slope influenced by censored values
ES-00002 TN WARNING: Sen slope based on tied non-censored values
ES-00002 TP WARNING: Sen slope influenced by censored values
ES-00003 DRP < 3 unique values
ES-00003 ECOLI WARNING: Sen slope influenced by censored values
ES-00003 NH4N < 5 Non-censored values
ES-00003 NO3N < 3 unique values in Season
ES-00003 TN WARNING: Sen slope influenced by censored values
ES-00003 TP WARNING: Sen slope influenced by censored values
ES-00004 DRP WARNING: Sen slope influenced by censored values
ES-00004 ECOLI WARNING: Sen slope based on tied non-censored values
ES-00004 NH4N WARNING: Sen slope influenced by censored values
ES-00004 NO3N WARNING: Sen slope influenced by censored values
ES-00004 TN WARNING: Sen slope influenced by censored values
ES-00004 TP WARNING: Sen slope influenced by censored values
ES-00006 DRP WARNING: Sen slope influenced by censored values
ES-00006 NH4N WARNING: Sen slope based on two censored values
ES-00006 TP WARNING: Sen slope influenced by censored values
ES-00008 NH4N WARNING: Sen slope influenced by censored values
ES-00009 DRP WARNING: Sen slope influenced by censored values
ES-00009 ECOLI WARNING: Sen slope influenced by censored values
ES-00009 NH4N < 5 Non-censored values
ES-00009 TN WARNING: Sen slope influenced by censored values
ES-00009 TP WARNING: Sen slope influenced by censored values
ES-00012 DRP WARNING: Sen slope influenced by censored values
ES-00012 ECOLI Long run of single value in a Season
ES-00012 NH4N WARNING: Sen slope influenced by censored values
ES-00012 TN WARNING: Sen slope influenced by censored values
ES-00012 TP WARNING: Sen slope influenced by censored values
ES-00013 DRP WARNING: Sen slope influenced by censored values
ES-00013 ECOLI WARNING: Sen slope influenced by censored values
ES-00013 NH4N WARNING: Sen slope influenced by censored values
ES-00013 TP WARNING: Sen slope influenced by censored values
ES-00015 DRP WARNING: Sen slope based on tied non-censored values
ES-00016 DRP WARNING: Sen slope influenced by censored values
ES-00016 NH4N WARNING: Sen slope influenced by censored values
ES-00016 TP WARNING: Sen slope based on tied non-censored values
ES-00017 NH4N < 3 unique values in Season
ES-00017 NO3N WARNING: Sen slope based on tied non-censored values
ES-00018 DRP WARNING: Sen slope influenced by censored values
ES-00021 NH4N WARNING: Sen slope influenced by censored values
ES-00022 DRP WARNING: Sen slope influenced by censored values
ES-00025 DRP WARNING: Sen slope influenced by censored values
ES-00025 NH4N WARNING: Sen slope influenced by censored values
ES-00026 CLAR WARNING: Sen slope based on tied non-censored values
ES-00026 DRP WARNING: Sen slope influenced by censored values
ES-00026 ECOLI WARNING: Sen slope influenced by censored values
ES-00026 NH4N WARNING: Sen slope based on two censored values
ES-00026 NO3N WARNING: Sen slope based on tied non-censored values
ES-00026 TN WARNING: Sen slope influenced by censored values
ES-00026 TP WARNING: Sen slope influenced by censored values
ES-00028 NH4N Long run of single value in a Season
ES-00029 CLAR WARNING: Sen slope influenced by censored values
ES-00029 DRP WARNING: Sen slope influenced by censored values
ES-00029 ECOLI Long run of single value in a Season
ES-00029 NH4N WARNING: Sen slope influenced by censored values
ES-00029 TP WARNING: Sen slope based on tied non-censored values
ES-00030 DRP WARNING: Sen slope based on tied non-censored values
ES-00030 NH4N WARNING: Sen slope influenced by censored values
ES-00030 TP WARNING: Sen slope based on tied non-censored values
ES-00033 DRP WARNING: Sen slope influenced by censored values
ES-00033 ECOLI WARNING: Sen slope influenced by censored values
ES-00033 NH4N WARNING: Sen slope influenced by censored values
ES-00034 DRP WARNING: Sen slope based on tied non-censored values
ES-00034 NH4N WARNING: Sen slope influenced by censored values
ES-00035 NH4N WARNING: Sen slope influenced by censored values
ES-00036 NH4N WARNING: Sen slope influenced by censored values
ES-00037 CLAR WARNING: Sen slope influenced by censored values
ES-00037 DRP WARNING: Sen slope influenced by censored values
ES-00037 NH4N WARNING: Sen slope influenced by censored values
ES-00042 DRP WARNING: Sen slope influenced by censored values
ES-00042 ECOLI WARNING: Sen slope based on tied non-censored values
ES-00042 NH4N WARNING: Sen slope influenced by censored values
ES-00043 DRP < 3 unique values in Season
ES-00043 ECOLI WARNING: Sen slope influenced by censored values
ES-00043 NH4N WARNING: Sen slope influenced by censored values
ES-00043 TP WARNING: Sen slope influenced by censored values
ES-00044 DRP WARNING: Sen slope influenced by censored values
ES-00044 ECOLI WARNING: Sen slope based on tied non-censored values
ES-00044 NH4N WARNING: Sen slope influenced by censored values
ES-00045 DRP WARNING: Sen slope influenced by censored values
ES-00045 ECOLI WARNING: Sen slope influenced by censored values
ES-00045 NH4N WARNING: Sen slope influenced by censored values
ES-00045 TP WARNING: Sen slope influenced by censored values
ES-00046 NH4N WARNING: Sen slope influenced by censored values
ES-00047 ECOLI WARNING: Sen slope based on tied non-censored values
ES-00047 NH4N WARNING: Sen slope influenced by censored values
ES-00047 TP WARNING: Sen slope based on tied non-censored values
ES-00048 ECOLI WARNING: Sen slope based on tied non-censored values
ES-00048 NH4N WARNING: Sen slope influenced by censored values
ES-00049 DRP WARNING: Sen slope influenced by censored values
ES-00051 DRP WARNING: Sen slope influenced by censored values
ES-00051 NH4N WARNING: Sen slope influenced by censored values
ES-00052 DRP WARNING: Sen slope influenced by censored values
ES-00054 CLAR WARNING: Sen slope based on tied non-censored values
ES-00054 DRP WARNING: Sen slope influenced by censored values
ES-00054 ECOLI WARNING: Sen slope influenced by censored values
ES-00054 NH4N WARNING: Sen slope influenced by censored values
ES-00054 NO3N WARNING: Sen slope influenced by censored values
ES-00057 ECOLI WARNING: Sen slope influenced by censored values
ES-00061 DRP WARNING: Sen slope based on tied non-censored values
ES-00061 NH4N Long run of single value in a Season
ES-00062 DRP WARNING: Sen slope influenced by censored values
ES-00062 NH4N WARNING: Sen slope influenced by censored values
ES-00062 TP WARNING: Sen slope influenced by censored values
ES-00064 DRP WARNING: Sen slope based on tied non-censored values
ES-00064 ECOLI WARNING: Sen slope based on tied non-censored values
ES-00064 NH4N WARNING: Sen slope influenced by censored values
ES-00064 TN WARNING: Sen slope based on tied non-censored values
ES-00065 DRP WARNING: Sen slope based on tied non-censored values
ES-00065 ECOLI WARNING: Sen slope based on tied non-censored values
ES-00065 NH4N WARNING: Sen slope influenced by censored values
ES-00067 NH4N WARNING: Sen slope influenced by censored values
ES-00068 NH4N WARNING: Sen slope influenced by censored values
ES-00072 DRP WARNING: Sen slope influenced by censored values
ES-00072 NH4N Long run of single value in a Season
ES-00112 CLAR WARNING: Sen slope influenced by censored values
ES-00121 DRP WARNING: Sen slope influenced by censored values
ES-00121 ECOLI WARNING: Sen slope influenced by censored values
ES-00121 NH4N < 3 unique values
ES-00121 TP WARNING: Sen slope influenced by censored values
ES-00130 DRP WARNING: Sen slope influenced by censored values
ES-00130 NH4N WARNING: Sen slope influenced by censored values
ES-00135 NH4N WARNING: Sen slope influenced by censored values
EW-00001 NH4N WARNING: Sen slope influenced by censored values
EW-00001 TP WARNING: Sen slope based on tied non-censored values
EW-00002 NH4N WARNING: Sen slope influenced by censored values
EW-00002 TP WARNING: Sen slope based on tied non-censored values
EW-00003 DRP WARNING: Sen slope influenced by censored values
EW-00003 NH4N WARNING: Sen slope influenced by censored values
EW-00003 NO3N WARNING: Sen slope based on tied non-censored values
EW-00004 CLAR WARNING: Sen slope based on tied non-censored values
EW-00004 DRP WARNING: Sen slope influenced by censored values
EW-00004 NH4N WARNING: Sen slope influenced by censored values
EW-00004 TP WARNING: Sen slope influenced by censored values
EW-00005 DRP WARNING: Sen slope influenced by censored values
EW-00005 NH4N WARNING: Sen slope influenced by censored values
EW-00005 TP WARNING: Sen slope influenced by censored values
EW-00006 NH4N Long run of single value
EW-00007 NO3N WARNING: Sen slope based on tied non-censored values
EW-00008 NH4N WARNING: Sen slope influenced by censored values
EW-00009 DRP Long run of single value
EW-00009 NH4N Long run of single value
EW-00009 NO3N WARNING: Sen slope influenced by censored values
EW-00009 TP WARNING: Sen slope influenced by censored values
EW-00010 NH4N WARNING: Sen slope influenced by censored values
EW-00011 NH4N WARNING: Sen slope based on tied non-censored values
EW-00012 CLAR WARNING: Sen slope based on tied non-censored values
EW-00012 DRP WARNING: Sen slope influenced by censored values
EW-00013 DRP Long run of single value
EW-00013 NH4N WARNING: Sen slope influenced by censored values
EW-00013 TP WARNING: Sen slope influenced by censored values
EW-00014 DRP WARNING: Sen slope influenced by censored values
EW-00014 NH4N WARNING: Sen slope influenced by censored values
EW-00014 TP WARNING: Sen slope based on tied non-censored values
EW-00016 NH4N Long run of single value in a Season
EW-00017 NH4N < 3 unique values in Season
EW-00019 NH4N WARNING: Sen slope influenced by censored values
EW-00020 NH4N WARNING: Sen slope based on tied non-censored values
EW-00022 NH4N WARNING: Sen slope influenced by censored values
EW-00023 NH4N < 3 unique values in Season
EW-00024 DRP WARNING: Sen slope based on tied non-censored values
EW-00024 NH4N WARNING: Sen slope influenced by censored values
EW-00027 DRP WARNING: Sen slope based on tied non-censored values
EW-00027 NH4N WARNING: Sen slope influenced by censored values
EW-00028 DRP WARNING: Sen slope influenced by censored values
EW-00028 NH4N WARNING: Sen slope influenced by censored values
EW-00028 NO3N WARNING: Sen slope based on tied non-censored values
EW-00028 TN WARNING: Sen slope based on tied non-censored values
EW-00029 NH4N WARNING: Sen slope influenced by censored values
EW-00030 NH4N WARNING: Sen slope influenced by censored values
EW-00031 NH4N < 3 unique values in Season
EW-00032 NH4N < 3 unique values in Season
EW-00032 NO3N WARNING: Sen slope influenced by censored values
EW-00033 DRP WARNING: Sen slope influenced by censored values
EW-00033 NH4N < 3 unique values in Season
EW-00034 DRP < 3 unique values in Season
EW-00034 NH4N < 3 unique values
EW-00034 NO3N WARNING: Sen slope based on tied non-censored values
EW-00034 TN WARNING: Sen slope based on tied non-censored values
EW-00034 TP WARNING: Sen slope influenced by censored values
EW-00035 DRP WARNING: Sen slope based on tied non-censored values
EW-00036 CLAR WARNING: Sen slope based on tied non-censored values
EW-00036 TN WARNING: Sen slope based on tied non-censored values
EW-00037 DRP WARNING: Sen slope based on tied non-censored values
EW-00037 NH4N WARNING: Sen slope influenced by censored values
EW-00040 NH4N WARNING: Sen slope influenced by censored values
EW-00043 NH4N Long run of single value in a Season
EW-00043 NO3N WARNING: Sen slope based on tied non-censored values
EW-00043 TN WARNING: Sen slope based on tied non-censored values
EW-00044 DRP WARNING: Sen slope based on tied non-censored values
EW-00044 NH4N WARNING: Sen slope influenced by censored values
EW-00045 NH4N WARNING: Sen slope influenced by censored values
EW-00046 NH4N WARNING: Sen slope influenced by censored values
EW-00046 TURB WARNING: Sen slope based on tied non-censored values
EW-00047 DRP WARNING: Sen slope influenced by censored values
EW-00047 NH4N WARNING: Sen slope influenced by censored values
EW-00048 DRP WARNING: Sen slope based on tied non-censored values
EW-00048 NH4N WARNING: Sen slope influenced by censored values
EW-00048 NO3N WARNING: Sen slope based on tied non-censored values
EW-00049 DRP WARNING: Sen slope influenced by censored values
EW-00049 NH4N WARNING: Sen slope influenced by censored values
EW-00049 NO3N WARNING: Sen slope based on tied non-censored values
EW-00050 DRP WARNING: Sen slope influenced by censored values
EW-00050 NH4N < 3 unique values in Season
EW-00051 DRP WARNING: Sen slope based on tied non-censored values
EW-00052 NH4N WARNING: Sen slope influenced by censored values
EW-00053 DRP WARNING: Sen slope influenced by censored values
EW-00053 NH4N WARNING: Sen slope influenced by censored values
EW-00054 NH4N WARNING: Sen slope influenced by censored values
EW-00056 NH4N WARNING: Sen slope influenced by censored values
EW-00057 NH4N WARNING: Sen slope influenced by censored values
EW-00058 NH4N Long run of single value in a Season
EW-00059 NH4N WARNING: Sen slope influenced by censored values
EW-00059 TP WARNING: Sen slope based on tied non-censored values
EW-00060 DRP WARNING: Sen slope based on tied non-censored values
EW-00060 NH4N WARNING: Sen slope influenced by censored values
EW-00060 TP WARNING: Sen slope based on tied non-censored values
EW-00061 NH4N WARNING: Sen slope influenced by censored values
EW-00063 NH4N WARNING: Sen slope influenced by censored values
EW-00064 CLAR WARNING: Sen slope based on tied non-censored values
EW-00064 NH4N WARNING: Sen slope influenced by censored values
EW-00064 TP WARNING: Sen slope based on tied non-censored values
EW-00065 DRP WARNING: Sen slope influenced by censored values
EW-00065 NH4N WARNING: Sen slope influenced by censored values
EW-00065 NO3N WARNING: Sen slope influenced by censored values
EW-00065 TP WARNING: Sen slope influenced by censored values
EW-00066 DRP WARNING: Sen slope influenced by censored values
EW-00066 NH4N WARNING: Sen slope influenced by censored values
EW-00066 NO3N WARNING: Sen slope influenced by censored values
EW-00066 TP WARNING: Sen slope influenced by censored values
EW-00068 NH4N WARNING: Sen slope influenced by censored values
EW-00069 DRP WARNING: Sen slope influenced by censored values
EW-00069 NH4N WARNING: Sen slope influenced by censored values
EW-00069 NO3N Long run of single value in a Season
EW-00069 TN WARNING: Sen slope based on tied non-censored values
EW-00070 DRP WARNING: Sen slope based on tied non-censored values
EW-00070 NH4N < 3 unique values
EW-00071 NH4N WARNING: Sen slope influenced by censored values
EW-00072 DRP WARNING: Sen slope based on tied non-censored values
EW-00072 NH4N WARNING: Sen slope influenced by censored values
EW-00072 TURB WARNING: Sen slope based on tied non-censored values
EW-00073 DRP < 3 unique values
EW-00073 NH4N WARNING: Sen slope influenced by censored values
EW-00073 TP WARNING: Sen slope influenced by censored values
EW-00074 CLAR WARNING: Sen slope influenced by censored values
EW-00074 NH4N WARNING: Sen slope influenced by censored values
EW-00075 NH4N Long run of single value in a Season
EW-00076 NH4N WARNING: Sen slope influenced by censored values
EW-00076 TP WARNING: Sen slope based on tied non-censored values
EW-00077 NH4N Long run of single value in a Season
EW-00078 DRP WARNING: Sen slope based on tied non-censored values
EW-00078 NH4N WARNING: Sen slope influenced by censored values
EW-00079 ECOLI WARNING: Sen slope based on tied non-censored values
EW-00079 NH4N < 3 unique values in Season
EW-00080 DRP WARNING: Sen slope influenced by censored values
EW-00080 NH4N Long run of single value in a Season
EW-00082 DRP WARNING: Sen slope influenced by censored values
EW-00082 ECOLI WARNING: Sen slope based on tied non-censored values
EW-00082 NH4N < 3 unique values in Season
EW-00083 DRP WARNING: Sen slope influenced by censored values
EW-00083 ECOLI WARNING: Sen slope influenced by censored values
EW-00083 NH4N < 3 unique values in Season
EW-00083 NO3N WARNING: Sen slope based on tied non-censored values
EW-00084 ECOLI WARNING: Sen slope based on tied non-censored values
EW-00084 NH4N < 3 unique values in Season
EW-00085 DRP WARNING: Sen slope influenced by censored values
EW-00085 ECOLI WARNING: Sen slope influenced by censored values
EW-00085 NH4N < 3 unique values in Season
EW-00086 ECOLI WARNING: Sen slope based on tied non-censored values
EW-00086 NH4N WARNING: Sen slope influenced by censored values
EW-00087 CLAR WARNING: Sen slope based on tied non-censored values
EW-00087 DRP WARNING: Sen slope influenced by censored values
EW-00087 NH4N < 3 unique values in Season
EW-00087 NO3N WARNING: Sen slope influenced by censored values
EW-00087 TN WARNING: Sen slope based on tied non-censored values
EW-00088 NH4N < 3 unique values
EW-00089 NH4N Long run of single value in a Season
EW-00090 DRP WARNING: Sen slope influenced by censored values
EW-00090 ECOLI WARNING: Sen slope influenced by censored values
EW-00091 DRP WARNING: Sen slope based on tied non-censored values
EW-00091 NH4N WARNING: Sen slope based on tied non-censored values
EW-00092 DRP WARNING: Sen slope influenced by censored values
EW-00092 NH4N Long run of single value in a Season
EW-00094 DRP WARNING: Sen slope influenced by censored values
EW-00094 NH4N < 3 unique values in Season
EW-00095 NH4N WARNING: Sen slope influenced by censored values
EW-00096 NH4N Long run of single value
EW-00096 TP WARNING: Sen slope based on tied non-censored values
EW-00097 NH4N Long run of single value in a Season
EW-00098 NH4N WARNING: Sen slope based on tied non-censored values
EW-00099 DRP WARNING: Sen slope influenced by censored values
EW-00099 NH4N WARNING: Sen slope influenced by censored values
EW-00099 TP WARNING: Sen slope influenced by censored values
EW-00100 DRP WARNING: Sen slope based on tied non-censored values
EW-00100 NH4N WARNING: Sen slope influenced by censored values
EW-00101 NH4N < 3 unique values in Season
EW-00102 NH4N WARNING: Sen slope influenced by censored values
EW-00102 NO3N WARNING: Sen slope based on tied non-censored values
EW-00104 DRP WARNING: Sen slope influenced by censored values
EW-00104 NH4N Long run of single value in a Season
EW-00105 DRP WARNING: Sen slope influenced by censored values
EW-00105 ECOLI WARNING: Sen slope based on tied non-censored values
EW-00105 NH4N WARNING: Sen slope influenced by censored values
EW-00105 TP WARNING: Sen slope based on tied non-censored values
EW-00106 DRP WARNING: Sen slope influenced by censored values
EW-00106 NH4N < 3 unique values
EW-00106 NO3N WARNING: Sen slope influenced by censored values
EW-00106 TP WARNING: Sen slope influenced by censored values
EW-00108 NH4N WARNING: Sen slope influenced by censored values
EW-00109 NH4N WARNING: Sen slope influenced by censored values
EW-00110 DRP WARNING: Sen slope influenced by censored values
EW-00110 NH4N WARNING: Sen slope influenced by censored values
EW-00110 NO3N WARNING: Sen slope influenced by censored values
EW-00111 DRP WARNING: Sen slope based on tied non-censored values
EW-00111 NH4N WARNING: Sen slope influenced by censored values
EW-00111 TP WARNING: Sen slope based on tied non-censored values
EW-00112 NH4N WARNING: Sen slope influenced by censored values
EW-00112 TURB WARNING: Sen slope based on tied non-censored values
EW-00113 NH4N WARNING: Sen slope influenced by censored values
EW-00113 NO3N WARNING: Sen slope based on tied non-censored values
EW-00113 TN WARNING: Sen slope based on tied non-censored values
EW-00114 CLAR WARNING: Sen slope based on tied non-censored values
EW-00114 DRP WARNING: Sen slope influenced by censored values
EW-00114 NH4N WARNING: Sen slope influenced by censored values
EW-00114 NO3N WARNING: Sen slope influenced by censored values
EW-00115 DRP WARNING: Sen slope influenced by censored values
EW-00115 NH4N Long run of single value
EW-00115 TP WARNING: Sen slope influenced by censored values
EW-00116 DRP WARNING: Sen slope based on tied non-censored values
EW-00116 ECOLI WARNING: Sen slope based on tied non-censored values
EW-00116 NH4N < 3 unique values
EW-00118 NH4N WARNING: Sen slope influenced by censored values
EW-00119 DRP Long run of single value
EW-00119 ECOLI Long run of single value in a Season
EW-00119 NH4N Long run of single value
EW-00119 NO3N WARNING: Sen slope influenced by censored values
EW-00119 TN WARNING: Sen slope based on tied non-censored values
GDC-00003 DRP Long run of single value in a Season
GDC-00003 NH4N WARNING: Sen slope influenced by censored values
GDC-00004 DRP WARNING: Sen slope based on tied non-censored values
GDC-00004 NH4N WARNING: Sen slope based on tied non-censored values
GDC-00005 DRP Long run of single value in a Season
GDC-00005 NH4N WARNING: Sen slope influenced by censored values
GDC-00006 NH4N WARNING: Sen slope based on tied non-censored values
GDC-00008 DRP Long run of single value in a Season
GDC-00008 NH4N WARNING: Sen slope based on tied non-censored values
GDC-00009 NH4N WARNING: Sen slope influenced by censored values
GDC-00010 DRP WARNING: Sen slope based on tied non-censored values
GDC-00010 NH4N WARNING: Sen slope based on tied non-censored values
GDC-00010 NO3N WARNING: Sen slope based on tied non-censored values
GDC-00011 ECOLI WARNING: Sen slope based on tied non-censored values
GDC-00011 NH4N WARNING: Sen slope based on tied non-censored values
GDC-00013 NH4N WARNING: Sen slope based on two censored values
GDC-00014 DRP Long run of single value in a Season
GDC-00014 NH4N WARNING: Sen slope based on two censored values
GDC-00015 NH4N WARNING: Sen slope based on tied non-censored values
GDC-00017 DRP Long run of single value in a Season
GDC-00017 NH4N WARNING: Sen slope influenced by censored values
GDC-00017 NO3N WARNING: Sen slope influenced by censored values
GDC-00018 NH4N WARNING: Sen slope based on tied non-censored values
GDC-00020 TURB WARNING: Sen slope based on tied non-censored values
GDC-00021 DRP Long run of single value in a Season
GDC-00021 NH4N WARNING: Sen slope based on tied non-censored values
GDC-00021 NO3N Long run of single value in a Season
GDC-00022 DRP WARNING: Sen slope based on tied non-censored values
GDC-00022 NH4N WARNING: Sen slope based on tied non-censored values
GDC-00022 NO3N WARNING: Sen slope based on tied non-censored values
GDC-00023 DRP WARNING: Sen slope based on tied non-censored values
GDC-00023 NH4N WARNING: Sen slope based on tied non-censored values
GDC-00023 NO3N WARNING: Sen slope based on tied non-censored values
GDC-00024 DRP Long run of single value in a Season
GDC-00024 NH4N Long run of single value in a Season
GDC-00024 NO3N Long run of single value in a Season
GDC-00027 DRP Long run of single value in a Season
GDC-00027 NH4N WARNING: Sen slope based on tied non-censored values
GDC-00027 NO3N WARNING: Sen slope based on tied non-censored values
GDC-00028 DRP Long run of single value in a Season
GDC-00028 NH4N WARNING: Sen slope based on tied non-censored values
GDC-00030 NH4N WARNING: Sen slope based on tied non-censored values
GDC-00030 NO3N WARNING: Sen slope based on tied non-censored values
GDC-00031 NH4N WARNING: Sen slope based on tied non-censored values
GDC-00039 DRP WARNING: Sen slope based on tied non-censored values
GDC-00039 NH4N Long run of single value in a Season
GW-00002 NH4N WARNING: Sen slope influenced by censored values
GW-00005 ECOLI WARNING: Sen slope influenced by censored values
GW-00005 NH4N < 5 Non-censored values
GW-00005 NO3N WARNING: Sen slope based on tied non-censored values
GW-00005 TN WARNING: Sen slope influenced by censored values
GW-00005 TP WARNING: Sen slope influenced by censored values
GW-00006 DRP WARNING: Sen slope influenced by censored values
GW-00006 NH4N WARNING: Sen slope influenced by censored values
GW-00006 NO3N WARNING: Sen slope influenced by censored values
GW-00006 TN Long run of single value in a Season
GW-00006 TP WARNING: Sen slope influenced by censored values
GW-00010 NH4N WARNING: Sen slope influenced by censored values
GW-00010 TP WARNING: Sen slope influenced by censored values
GW-00013 DRP WARNING: Sen slope based on tied non-censored values
GW-00013 NH4N WARNING: Sen slope influenced by censored values
GW-00014 NH4N WARNING: Sen slope based on two censored values
GW-00014 NO3N WARNING: Sen slope influenced by censored values
GW-00014 TN WARNING: Sen slope based on tied non-censored values
GW-00014 TURB WARNING: Sen slope based on tied non-censored values
GW-00016 DRP WARNING: Sen slope based on tied non-censored values
GW-00016 NH4N WARNING: Sen slope based on two censored values
GW-00017 DRP WARNING: Sen slope based on tied non-censored values
GW-00017 NH4N WARNING: Sen slope influenced by censored values
GW-00017 TURB WARNING: Sen slope based on tied non-censored values
GW-00018 NH4N WARNING: Sen slope influenced by censored values
GW-00018 TN WARNING: Sen slope based on tied non-censored values
GW-00019 NH4N Long run of single value in a Season
GW-00020 DRP WARNING: Sen slope influenced by censored values
GW-00020 NH4N WARNING: Sen slope influenced by censored values
GW-00020 TN WARNING: Sen slope influenced by censored values
GW-00021 DRP Long run of single value in a Season
GW-00021 NH4N WARNING: Sen slope influenced by censored values
GW-00021 TP WARNING: Sen slope influenced by censored values
GW-00023 NH4N WARNING: Sen slope influenced by censored values
GW-00024 CLAR WARNING: Sen slope influenced by censored values
GW-00024 ECOLI WARNING: Sen slope based on tied non-censored values
GW-00024 NH4N WARNING: Sen slope influenced by censored values
GW-00024 NO3N WARNING: Sen slope based on tied non-censored values
GW-00025 DRP WARNING: Sen slope influenced by censored values
GW-00025 NH4N WARNING: Sen slope influenced by censored values
GW-00025 TN WARNING: Sen slope influenced by censored values
GW-00025 TP WARNING: Sen slope influenced by censored values
GW-00026 DRP WARNING: Sen slope influenced by censored values
GW-00026 NH4N WARNING: Sen slope based on two censored values
GW-00028 NH4N WARNING: Sen slope influenced by censored values
GW-00028 TN WARNING: Sen slope influenced by censored values
GW-00029 NH4N WARNING: Sen slope influenced by censored values
GW-00031 DRP WARNING: Sen slope influenced by censored values
GW-00031 ECOLI WARNING: Sen slope influenced by censored values
GW-00031 NH4N WARNING: Sen slope influenced by censored values
GW-00031 TN WARNING: Sen slope influenced by censored values
GW-00031 TP WARNING: Sen slope influenced by censored values
GW-00032 NH4N WARNING: Sen slope influenced by censored values
GW-00032 TN WARNING: Sen slope based on tied non-censored values
GW-00033 NH4N Long run of single value in a Season
GW-00034 NH4N Long run of single value in a Season
GW-00034 NO3N WARNING: Sen slope influenced by censored values
GW-00037 NH4N WARNING: Sen slope influenced by censored values
GW-00037 NO3N WARNING: Sen slope based on tied non-censored values
GW-00038 NH4N WARNING: Sen slope based on two censored values
GW-00039 NH4N WARNING: Sen slope influenced by censored values
GW-00039 TURB WARNING: Sen slope based on tied non-censored values
GW-00040 DRP WARNING: Sen slope influenced by censored values
GW-00040 NH4N WARNING: Sen slope influenced by censored values
GW-00040 TP WARNING: Sen slope influenced by censored values
GW-00041 DRP WARNING: Sen slope influenced by censored values
GW-00041 NH4N WARNING: Sen slope influenced by censored values
GW-00041 TN Long run of single value in a Season
GW-00041 TP WARNING: Sen slope influenced by censored values
GW-00041 TURB WARNING: Sen slope based on tied non-censored values
GW-00042 DRP WARNING: Sen slope influenced by censored values
GW-00042 NH4N Long run of single value in a Season
GW-00042 NO3N WARNING: Sen slope based on two censored values
GW-00045 CLAR WARNING: Sen slope influenced by censored values
GW-00045 NH4N < 3 unique values
GW-00046 NH4N Long run of single value in a Season
GW-00047 DRP WARNING: Sen slope influenced by censored values
GW-00047 NH4N WARNING: Sen slope influenced by censored values
GW-00047 TN WARNING: Sen slope influenced by censored values
GW-00047 TP WARNING: Sen slope influenced by censored values
GW-00048 NH4N Long run of single value in a Season
GW-00050 NH4N WARNING: Sen slope based on two censored values
GW-00051 DRP WARNING: Sen slope influenced by censored values
GW-00051 NH4N WARNING: Sen slope influenced by censored values
GW-00051 NO3N WARNING: Sen slope influenced by censored values
GW-00051 TP WARNING: Sen slope influenced by censored values
GW-00053 DRP WARNING: Sen slope influenced by censored values
GW-00053 NH4N WARNING: Sen slope influenced by censored values
GW-00053 TN WARNING: Sen slope based on tied non-censored values
GW-00055 DRP WARNING: Sen slope influenced by censored values
GW-00055 ECOLI WARNING: Sen slope based on tied non-censored values
GW-00055 NH4N WARNING: Sen slope influenced by censored values
GW-00055 TN Long run of single value in a Season
HBRC-00002 NH4N WARNING: Sen slope based on two censored values
HBRC-00002 NO3N WARNING: Sen slope influenced by censored values
HBRC-00003 NH4N WARNING: Sen slope influenced by censored values
HBRC-00004 NH4N WARNING: Sen slope based on two censored values
HBRC-00005 DRP WARNING: Sen slope based on tied non-censored values
HBRC-00005 NH4N WARNING: Sen slope based on two censored values
HBRC-00005 TN WARNING: Sen slope influenced by censored values
HBRC-00006 DRP WARNING: Sen slope influenced by censored values
HBRC-00006 ECOLI WARNING: Sen slope influenced by censored values
HBRC-00006 NH4N WARNING: Sen slope based on two censored values
HBRC-00006 NO3N WARNING: Sen slope based on two censored values
HBRC-00007 DRP WARNING: Sen slope influenced by censored values
HBRC-00007 NH4N WARNING: Sen slope influenced by censored values
HBRC-00008 NH4N WARNING: Sen slope based on two censored values
HBRC-00008 TN WARNING: Sen slope influenced by censored values
HBRC-00009 NH4N WARNING: Sen slope based on two censored values
HBRC-00010 NH4N WARNING: Sen slope based on two censored values
HBRC-00010 NO3N WARNING: Sen slope influenced by censored values
HBRC-00011 DRP Long run of single value in a Season
HBRC-00011 NH4N WARNING: Sen slope based on two censored values
HBRC-00011 NO3N WARNING: Sen slope influenced by censored values
HBRC-00011 TP WARNING: Sen slope influenced by censored values
HBRC-00015 NH4N WARNING: Sen slope based on two censored values
HBRC-00015 NO3N WARNING: Sen slope based on tied non-censored values
HBRC-00017 DRP WARNING: Sen slope influenced by censored values
HBRC-00017 NH4N WARNING: Sen slope based on two censored values
HBRC-00017 TN WARNING: Sen slope influenced by censored values
HBRC-00017 TP WARNING: Sen slope influenced by censored values
HBRC-00018 NH4N WARNING: Sen slope influenced by censored values
HBRC-00019 DRP Long run of single value in a Season
HBRC-00019 NH4N WARNING: Sen slope based on two censored values
HBRC-00019 TN WARNING: Sen slope influenced by censored values
HBRC-00019 TP WARNING: Sen slope influenced by censored values
HBRC-00021 DRP WARNING: Sen slope influenced by censored values
HBRC-00021 NH4N WARNING: Sen slope based on two censored values
HBRC-00021 TN WARNING: Sen slope influenced by censored values
HBRC-00021 TP Long run of single value in a Season
HBRC-00022 NH4N WARNING: Sen slope influenced by censored values
HBRC-00024 NH4N WARNING: Sen slope influenced by censored values
HBRC-00026 NH4N < 5 Non-censored values
HBRC-00026 TN WARNING: Sen slope influenced by censored values
HBRC-00028 NH4N < 5 Non-censored values
HBRC-00029 DRP WARNING: Sen slope influenced by censored values
HBRC-00029 NH4N WARNING: Sen slope based on two censored values
HBRC-00031 DRP WARNING: Sen slope influenced by censored values
HBRC-00031 NH4N WARNING: Sen slope influenced by censored values
HBRC-00031 NO3N WARNING: Sen slope influenced by censored values
HBRC-00031 TN WARNING: Sen slope influenced by censored values
HBRC-00032 NH4N WARNING: Sen slope based on two censored values
HBRC-00032 NO3N WARNING: Sen slope influenced by censored values
HBRC-00033 DRP WARNING: Sen slope influenced by censored values
HBRC-00033 NH4N WARNING: Sen slope based on two censored values
HBRC-00036 DRP WARNING: Sen slope influenced by censored values
HBRC-00036 NH4N Long run of single value in a Season
HBRC-00036 NO3N WARNING: Sen slope influenced by censored values
HBRC-00038 DRP WARNING: Sen slope influenced by censored values
HBRC-00038 NH4N WARNING: Sen slope based on two censored values
HBRC-00039 DRP Long run of single value in a Season
HBRC-00039 NH4N WARNING: Sen slope based on two censored values
HBRC-00039 TN WARNING: Sen slope influenced by censored values
HBRC-00039 TP WARNING: Sen slope influenced by censored values
HBRC-00040 NH4N < 5 Non-censored values
HBRC-00041 NH4N WARNING: Sen slope based on two censored values
HBRC-00042 NH4N WARNING: Sen slope based on two censored values
HBRC-00044 NH4N Long run of single value in a Season
HBRC-00046 ECOLI WARNING: Sen slope influenced by censored values
HBRC-00046 TP WARNING: Sen slope based on tied non-censored values
HBRC-00048 NH4N WARNING: Sen slope based on two censored values
HBRC-00048 TN WARNING: Sen slope influenced by censored values
HBRC-00053 DRP WARNING: Sen slope based on two censored values
HBRC-00053 NH4N WARNING: Sen slope based on two censored values
HBRC-00053 NO3N WARNING: Sen slope influenced by censored values
HBRC-00055 NH4N WARNING: Sen slope based on two censored values
HBRC-00056 ECOLI WARNING: Sen slope influenced by censored values
HBRC-00056 NH4N WARNING: Sen slope based on two censored values
HBRC-00056 TP WARNING: Sen slope based on tied non-censored values
HBRC-00059 NH4N WARNING: Sen slope based on two censored values
HBRC-00059 TP WARNING: Sen slope based on tied non-censored values
HBRC-00061 ECOLI WARNING: Sen slope influenced by censored values
HBRC-00061 NH4N < 5 Non-censored values
HBRC-00062 NH4N WARNING: Sen slope based on two censored values
HBRC-00062 TN WARNING: Sen slope influenced by censored values
HBRC-00062 TP WARNING: Sen slope influenced by censored values
HBRC-00063 NH4N WARNING: Sen slope based on two censored values
HBRC-00067 NH4N WARNING: Sen slope based on two censored values
HBRC-00069 NH4N WARNING: Sen slope based on two censored values
HBRC-00070 NH4N WARNING: Sen slope influenced by censored values
HBRC-00071 ECOLI WARNING: Sen slope influenced by censored values
HBRC-00071 NH4N WARNING: Sen slope based on two censored values
HBRC-00088 DRP WARNING: Sen slope influenced by censored values
HBRC-00088 NH4N Long run of single value in a Season
HRC-00002 NH4N WARNING: Sen slope influenced by censored values
HRC-00002 NO3N WARNING: Sen slope based on two censored values
HRC-00003 NH4N WARNING: Sen slope influenced by censored values
HRC-00003 NO3N WARNING: Sen slope influenced by censored values
HRC-00003 TP WARNING: Sen slope based on tied non-censored values
HRC-00005 DRP WARNING: Sen slope influenced by censored values
HRC-00005 NH4N WARNING: Sen slope influenced by censored values
HRC-00005 NO3N WARNING: Sen slope influenced by censored values
HRC-00005 TP WARNING: Sen slope influenced by censored values
HRC-00006 DRP WARNING: Sen slope influenced by censored values
HRC-00006 NH4N WARNING: Sen slope influenced by censored values
HRC-00007 DRP WARNING: Sen slope influenced by censored values
HRC-00007 NH4N Long run of single value in a Season
HRC-00007 TN WARNING: Sen slope based on tied non-censored values
HRC-00008 DRP WARNING: Sen slope influenced by censored values
HRC-00008 NH4N WARNING: Sen slope influenced by censored values
HRC-00010 NH4N WARNING: Sen slope influenced by censored values
HRC-00015 DRP WARNING: Sen slope influenced by censored values
HRC-00015 NH4N WARNING: Sen slope influenced by censored values
HRC-00016 DRP WARNING: Sen slope based on tied non-censored values
HRC-00016 NH4N WARNING: Sen slope influenced by censored values
HRC-00017 DRP WARNING: Sen slope influenced by censored values
HRC-00017 NH4N WARNING: Sen slope influenced by censored values
HRC-00019 DRP WARNING: Sen slope influenced by censored values
HRC-00019 NH4N WARNING: Sen slope influenced by censored values
HRC-00019 TP WARNING: Sen slope influenced by censored values
HRC-00020 NH4N WARNING: Sen slope influenced by censored values
HRC-00021 DRP WARNING: Sen slope influenced by censored values
HRC-00021 ECOLI WARNING: Sen slope influenced by censored values
HRC-00021 NH4N WARNING: Sen slope influenced by censored values
HRC-00021 NO3N WARNING: Sen slope influenced by censored values
HRC-00021 TP WARNING: Sen slope influenced by censored values
HRC-00022 DRP WARNING: Sen slope influenced by censored values
HRC-00022 NH4N WARNING: Sen slope influenced by censored values
HRC-00022 TP WARNING: Sen slope influenced by censored values
HRC-00024 DRP WARNING: Sen slope influenced by censored values
HRC-00025 CLAR WARNING: Sen slope based on tied non-censored values
HRC-00025 TN WARNING: Sen slope based on tied non-censored values
HRC-00026 DRP WARNING: Sen slope influenced by censored values
HRC-00026 NH4N WARNING: Sen slope influenced by censored values
HRC-00027 DRP WARNING: Sen slope influenced by censored values
HRC-00027 NH4N WARNING: Sen slope influenced by censored values
HRC-00027 NO3N WARNING: Sen slope influenced by censored values
HRC-00028 NH4N WARNING: Sen slope influenced by censored values
HRC-00029 ECOLI WARNING: Sen slope influenced by censored values
HRC-00029 NH4N WARNING: Sen slope influenced by censored values
HRC-00029 TN WARNING: Sen slope influenced by censored values
HRC-00030 CLAR WARNING: Sen slope influenced by censored values
HRC-00030 DRP WARNING: Sen slope influenced by censored values
HRC-00030 NH4N WARNING: Sen slope influenced by censored values
HRC-00031 DRP WARNING: Sen slope influenced by censored values
HRC-00031 NH4N WARNING: Sen slope influenced by censored values
HRC-00031 TP WARNING: Sen slope influenced by censored values
HRC-00032 CLAR WARNING: Sen slope based on tied non-censored values
HRC-00032 DRP WARNING: Sen slope influenced by censored values
HRC-00033 ECOLI WARNING: Sen slope based on tied non-censored values
HRC-00033 NH4N WARNING: Sen slope influenced by censored values
HRC-00034 CLAR WARNING: Sen slope based on tied non-censored values
HRC-00036 DRP WARNING: Sen slope influenced by censored values
HRC-00036 ECOLI WARNING: Sen slope influenced by censored values
HRC-00036 NH4N WARNING: Sen slope influenced by censored values
HRC-00037 DRP WARNING: Sen slope influenced by censored values
HRC-00037 NH4N WARNING: Sen slope influenced by censored values
HRC-00038 DRP WARNING: Sen slope influenced by censored values
HRC-00038 NH4N WARNING: Sen slope influenced by censored values
HRC-00038 NO3N WARNING: Sen slope influenced by censored values
HRC-00040 NH4N WARNING: Sen slope influenced by censored values
HRC-00040 NO3N WARNING: Sen slope influenced by censored values
HRC-00041 DRP WARNING: Sen slope influenced by censored values
HRC-00041 NH4N WARNING: Sen slope influenced by censored values
HRC-00042 DRP WARNING: Sen slope based on tied non-censored values
HRC-00042 NH4N WARNING: Sen slope influenced by censored values
HRC-00042 NO3N WARNING: Sen slope influenced by censored values
HRC-00043 DRP WARNING: Sen slope influenced by censored values
HRC-00043 ECOLI WARNING: Sen slope influenced by censored values
HRC-00043 NH4N WARNING: Sen slope influenced by censored values
HRC-00043 NO3N WARNING: Sen slope based on two censored values
HRC-00044 DRP WARNING: Sen slope influenced by censored values
HRC-00044 NH4N WARNING: Sen slope influenced by censored values
HRC-00044 NO3N WARNING: Sen slope influenced by censored values
HRC-00044 TP WARNING: Sen slope based on tied non-censored values
HRC-00046 CLAR WARNING: Sen slope based on tied non-censored values
HRC-00046 DRP WARNING: Sen slope influenced by censored values
HRC-00046 ECOLI WARNING: Sen slope based on tied non-censored values
HRC-00046 NH4N WARNING: Sen slope influenced by censored values
HRC-00046 TP WARNING: Sen slope influenced by censored values
HRC-00048 NH4N WARNING: Sen slope influenced by censored values
HRC-00049 CLAR WARNING: Sen slope influenced by censored values
HRC-00049 ECOLI WARNING: Sen slope influenced by censored values
HRC-00049 NH4N WARNING: Sen slope influenced by censored values
HRC-00050 CLAR WARNING: Sen slope based on tied non-censored values
HRC-00050 DRP WARNING: Sen slope influenced by censored values
HRC-00050 TP WARNING: Sen slope influenced by censored values
HRC-00053 NH4N WARNING: Sen slope influenced by censored values
HRC-00053 TP WARNING: Sen slope based on tied non-censored values
HRC-00054 NH4N WARNING: Sen slope influenced by censored values
HRC-00055 NH4N WARNING: Sen slope influenced by censored values
HRC-00056 NH4N WARNING: Sen slope influenced by censored values
HRC-00056 TP WARNING: Sen slope based on tied non-censored values
HRC-00057 NH4N WARNING: Sen slope influenced by censored values
HRC-00058 NH4N WARNING: Sen slope influenced by censored values
HRC-00058 TURB WARNING: Sen slope based on tied non-censored values
HRC-00059 CLAR WARNING: Sen slope based on tied non-censored values
HRC-00059 DRP WARNING: Sen slope influenced by censored values
HRC-00059 ECOLI WARNING: Sen slope influenced by censored values
HRC-00059 NH4N WARNING: Sen slope influenced by censored values
HRC-00060 NH4N WARNING: Sen slope influenced by censored values
HRC-00060 NO3N WARNING: Sen slope influenced by censored values
HRC-00060 TP WARNING: Sen slope based on tied non-censored values
HRC-00061 ECOLI WARNING: Sen slope influenced by censored values
HRC-00061 NH4N WARNING: Sen slope influenced by censored values
HRC-00063 DRP WARNING: Sen slope influenced by censored values
HRC-00063 NH4N WARNING: Sen slope influenced by censored values
HRC-00063 TP WARNING: Sen slope influenced by censored values
HRC-00064 NH4N WARNING: Sen slope influenced by censored values
HRC-00065 CLAR WARNING: Sen slope based on tied non-censored values
HRC-00065 NH4N WARNING: Sen slope influenced by censored values
HRC-00069 NH4N WARNING: Sen slope influenced by censored values
HRC-00069 NO3N WARNING: Sen slope influenced by censored values
HRC-00069 TP WARNING: Sen slope based on tied non-censored values
HRC-00070 NO3N WARNING: Sen slope influenced by censored values
HRC-00071 DRP WARNING: Sen slope influenced by censored values
HRC-00071 ECOLI WARNING: Sen slope influenced by censored values
HRC-00071 NH4N WARNING: Sen slope influenced by censored values
HRC-00072 NH4N WARNING: Sen slope influenced by censored values
HRC-00073 NH4N WARNING: Sen slope influenced by censored values
HRC-00073 NO3N WARNING: Sen slope influenced by censored values
HRC-00074 DRP WARNING: Sen slope influenced by censored values
HRC-00074 NH4N WARNING: Sen slope influenced by censored values
HRC-00075 DRP WARNING: Sen slope based on tied non-censored values
HRC-00075 NO3N WARNING: Sen slope influenced by censored values
HRC-00076 NH4N WARNING: Sen slope influenced by censored values
HRC-00077 DRP WARNING: Sen slope influenced by censored values
HRC-00077 NH4N WARNING: Sen slope influenced by censored values
HRC-00077 TP WARNING: Sen slope influenced by censored values
HRC-00078 DRP WARNING: Sen slope influenced by censored values
HRC-00078 NH4N WARNING: Sen slope influenced by censored values
HRC-00078 TP WARNING: Sen slope based on tied non-censored values
HRC-00079 DRP WARNING: Sen slope influenced by censored values
HRC-00079 NO3N WARNING: Sen slope influenced by censored values
HRC-00080 NH4N WARNING: Sen slope influenced by censored values
HRC-00081 TN WARNING: Sen slope based on tied non-censored values
HRC-00081 TP WARNING: Sen slope based on tied non-censored values
HRC-00083 NH4N WARNING: Sen slope influenced by censored values
HRC-00083 TP WARNING: Sen slope based on tied non-censored values
HRC-00085 NH4N WARNING: Sen slope influenced by censored values
HRC-00085 NO3N WARNING: Sen slope influenced by censored values
HRC-00086 DRP WARNING: Sen slope based on tied non-censored values
HRC-00088 DRP WARNING: Sen slope influenced by censored values
HRC-00088 NO3N WARNING: Sen slope influenced by censored values
HRC-00088 TP WARNING: Sen slope based on tied non-censored values
HRC-00089 DRP WARNING: Sen slope based on tied non-censored values
LAWA-100330 NH4N WARNING: Sen slope influenced by censored values
LAWA-100335 DRP Long run of single value in a Season
LAWA-100336 NH4N WARNING: Sen slope based on tied non-censored values
LAWA-100348 DRP Long run of single value in a Season
LAWA-100348 NH4N WARNING: Sen slope based on tied non-censored values
LAWA-100394 NH4N WARNING: Sen slope influenced by censored values
LAWA-100476 NH4N WARNING: Sen slope influenced by censored values
LAWA-100545 DRP WARNING: Sen slope influenced by censored values
LAWA-100545 NH4N WARNING: Sen slope based on two censored values
LAWA-100545 NO3N WARNING: Sen slope influenced by censored values
LAWA-100545 TP WARNING: Sen slope influenced by censored values
LAWA-101919 NH4N WARNING: Sen slope influenced by censored values
LAWA-101925 DRP WARNING: Sen slope influenced by censored values
LAWA-101925 NH4N WARNING: Sen slope influenced by censored values
LAWA-101932 NH4N WARNING: Sen slope influenced by censored values
LAWA-101933 NH4N WARNING: Sen slope influenced by censored values
LAWA-101933 NO3N WARNING: Sen slope influenced by censored values
LAWA-101934 CLAR WARNING: Sen slope influenced by censored values
LAWA-101934 ECOLI WARNING: Sen slope influenced by censored values
LAWA-101934 NH4N WARNING: Sen slope influenced by censored values
LAWA-101936 DRP WARNING: Sen slope influenced by censored values
LAWA-101936 NH4N WARNING: Sen slope influenced by censored values
LAWA-101940 NH4N WARNING: Sen slope influenced by censored values
LAWA-101941 DRP WARNING: Sen slope influenced by censored values
LAWA-101941 NH4N WARNING: Sen slope influenced by censored values
LAWA-101941 TURB WARNING: Sen slope based on tied non-censored values
LAWA-101943 NH4N WARNING: Sen slope influenced by censored values
LAWA-101948 DRP WARNING: Sen slope influenced by censored values
LAWA-101951 NH4N WARNING: Sen slope influenced by censored values
LAWA-101957 NH4N WARNING: Sen slope influenced by censored values
LAWA-101958 DRP WARNING: Sen slope influenced by censored values
LAWA-101958 NH4N WARNING: Sen slope influenced by censored values
LAWA-101958 NO3N WARNING: Sen slope influenced by censored values
LAWA-101958 TP WARNING: Sen slope based on tied non-censored values
LAWA-101962 NH4N WARNING: Sen slope influenced by censored values
LAWA-101963 ECOLI WARNING: Sen slope influenced by censored values
LAWA-102226 DRP WARNING: Sen slope influenced by censored values
LAWA-102226 NH4N WARNING: Sen slope influenced by censored values
LAWA-102226 TP WARNING: Sen slope based on two censored values
LAWA-102234 NH4N WARNING: Sen slope influenced by censored values
MDC-00002 NH4N WARNING: Sen slope based on two censored values
MDC-00002 NO3N WARNING: Sen slope based on two censored values
MDC-00003 NH4N WARNING: Sen slope influenced by censored values
MDC-00003 NO3N WARNING: Sen slope influenced by censored values
MDC-00004 ECOLI WARNING: Sen slope based on two censored values
MDC-00007 NH4N WARNING: Sen slope based on two censored values
MDC-00009 NH4N WARNING: Sen slope based on two censored values
MDC-00009 NO3N WARNING: Sen slope influenced by censored values
MDC-00010 NH4N WARNING: Sen slope based on two censored values
MDC-00010 NO3N WARNING: Sen slope based on tied non-censored values
MDC-00011 NH4N WARNING: Sen slope influenced by censored values
MDC-00012 ECOLI WARNING: Sen slope based on tied non-censored values
MDC-00012 NH4N WARNING: Sen slope based on two censored values
MDC-00012 TURB WARNING: Sen slope based on tied non-censored values
MDC-00013 NH4N WARNING: Sen slope influenced by censored values
MDC-00015 DRP WARNING: Sen slope influenced by censored values
MDC-00015 ECOLI WARNING: Sen slope influenced by censored values
MDC-00015 NH4N WARNING: Sen slope based on two censored values
MDC-00016 NH4N WARNING: Sen slope influenced by censored values
MDC-00017 NH4N WARNING: Sen slope influenced by censored values
MDC-00017 TURB WARNING: Sen slope based on tied non-censored values
MDC-00018 NH4N WARNING: Sen slope based on two censored values
MDC-00019 NH4N WARNING: Sen slope influenced by censored values
MDC-00019 NO3N WARNING: Sen slope influenced by censored values
MDC-00020 NH4N WARNING: Sen slope based on two censored values
MDC-00021 NH4N WARNING: Sen slope based on two censored values
MDC-00021 TURB WARNING: Sen slope based on tied non-censored values
MDC-00022 NH4N WARNING: Sen slope influenced by censored values
MDC-00023 ECOLI WARNING: Sen slope based on tied non-censored values
MDC-00023 NH4N WARNING: Sen slope based on two censored values
MDC-00024 NH4N WARNING: Sen slope influenced by censored values
MDC-00025 NO3N WARNING: Sen slope influenced by censored values
MDC-00025 TURB WARNING: Sen slope based on tied non-censored values
MDC-00026 NH4N WARNING: Sen slope influenced by censored values
MDC-00026 TURB WARNING: Sen slope based on tied non-censored values
MDC-00027 DRP WARNING: Sen slope based on two censored values
MDC-00027 NH4N < 5 Non-censored values
MDC-00028 ECOLI WARNING: Sen slope influenced by censored values
MDC-00028 NH4N WARNING: Sen slope influenced by censored values
MDC-00029 ECOLI WARNING: Sen slope influenced by censored values
MDC-00029 NH4N WARNING: Sen slope influenced by censored values
MDC-00029 NO3N WARNING: Sen slope influenced by censored values
MDC-00030 NH4N WARNING: Sen slope based on two censored values
MDC-00030 NO3N WARNING: Sen slope influenced by censored values
MDC-00031 NH4N WARNING: Sen slope based on two censored values
MDC-00031 TURB WARNING: Sen slope based on tied non-censored values
MDC-00034 DRP WARNING: Sen slope influenced by censored values
MDC-00034 NH4N WARNING: Sen slope based on two censored values
MDC-00034 NO3N WARNING: Sen slope influenced by censored values
NAT-AX01 DRP WARNING: Sen slope influenced by censored values
NAT-AX01 ECOLI WARNING: Sen slope influenced by censored values
NAT-AX01 TP WARNING: Sen slope based on tied non-censored values
NAT-AX02 CLAR WARNING: Sen slope based on tied non-censored values
NAT-AX02 DRP WARNING: Sen slope influenced by censored values
NAT-AX02 ECOLI WARNING: Sen slope influenced by censored values
NAT-AX02 TP WARNING: Sen slope based on tied non-censored values
NAT-AX03 ECOLI WARNING: Sen slope influenced by censored values
NAT-AX03 NH4N WARNING: Sen slope influenced by censored values
NAT-CH01 DRP WARNING: Sen slope influenced by censored values
NAT-CH01 TP WARNING: Sen slope based on tied non-censored values
NAT-CH04 CLAR WARNING: Sen slope based on tied non-censored values
NAT-CH04 TP WARNING: Sen slope based on tied non-censored values
NAT-DN04 NH4N WARNING: Sen slope based on tied non-censored values
NAT-DN06 NH4N WARNING: Sen slope influenced by censored values
NAT-DN07 DRP WARNING: Sen slope influenced by censored values
NAT-DN07 NH4N WARNING: Sen slope influenced by censored values
NAT-DN07 TP WARNING: Sen slope influenced by censored values
NAT-DN09 NH4N WARNING: Sen slope influenced by censored values
NAT-DN10 DRP WARNING: Sen slope influenced by censored values
NAT-DN10 ECOLI WARNING: Sen slope influenced by censored values
NAT-DN10 NO3N WARNING: Sen slope influenced by censored values
NAT-GS01 DRP WARNING: Sen slope influenced by censored values
NAT-GS03 TURB WARNING: Sen slope based on tied non-censored values
NAT-GS04 ECOLI WARNING: Sen slope based on tied non-censored values
NAT-GS04 NO3N WARNING: Sen slope based on tied non-censored values
NAT-GY01 CLAR WARNING: Sen slope based on tied non-censored values
NAT-GY01 DRP WARNING: Sen slope influenced by censored values
NAT-GY01 NH4N WARNING: Sen slope based on tied non-censored values
NAT-GY02 TP WARNING: Sen slope based on tied non-censored values
NAT-GY03 ECOLI WARNING: Sen slope influenced by censored values
NAT-GY04 ECOLI WARNING: Sen slope influenced by censored values
NAT-GY04 NH4N WARNING: Sen slope influenced by censored values
NAT-HM05 ECOLI WARNING: Sen slope influenced by censored values
NAT-HM06 NH4N WARNING: Sen slope based on tied non-censored values
NAT-HV02 NH4N WARNING: Sen slope based on two censored values
NAT-HV02 TN WARNING: Sen slope influenced by censored values
NAT-HV03 NH4N WARNING: Sen slope influenced by censored values
NAT-HV04 TURB WARNING: Sen slope based on tied non-censored values
NAT-HV05 NH4N WARNING: Sen slope influenced by censored values
NAT-HV06 TP WARNING: Sen slope based on tied non-censored values
NAT-NN01 DRP WARNING: Sen slope influenced by censored values
NAT-NN01 NH4N WARNING: Sen slope influenced by censored values
NAT-NN02 ECOLI Long run of single value in a Season
NAT-NN03 DRP WARNING: Sen slope based on tied non-censored values
NAT-NN03 ECOLI WARNING: Sen slope influenced by censored values
NAT-NN03 NH4N WARNING: Sen slope influenced by censored values
NAT-NN03 TP WARNING: Sen slope based on tied non-censored values
NAT-NN04 ECOLI WARNING: Sen slope influenced by censored values
NAT-NN05 NH4N WARNING: Sen slope based on tied non-censored values
NAT-RO01 ECOLI WARNING: Sen slope influenced by censored values
NAT-RO01 NH4N WARNING: Sen slope influenced by censored values
NAT-RO05 DRP WARNING: Sen slope based on tied non-censored values
NAT-RO06 ECOLI WARNING: Sen slope influenced by censored values
NAT-RO06 NO3N WARNING: Sen slope influenced by censored values
NAT-RO06 TP WARNING: Sen slope based on tied non-censored values
NAT-TK01 NH4N WARNING: Sen slope based on tied non-censored values
NAT-TK02 TURB WARNING: Sen slope based on tied non-censored values
NAT-TK04 ECOLI WARNING: Sen slope influenced by censored values
NAT-TK04 NH4N WARNING: Sen slope influenced by censored values
NAT-TK05 DRP WARNING: Sen slope based on tied non-censored values
NAT-TK06 DRP WARNING: Sen slope influenced by censored values
NAT-TK06 NH4N WARNING: Sen slope influenced by censored values
NAT-TU01 NH4N WARNING: Sen slope influenced by censored values
NAT-WA05 DRP WARNING: Sen slope influenced by censored values
NAT-WA05 NH4N WARNING: Sen slope influenced by censored values
NAT-WA07 NH4N WARNING: Sen slope influenced by censored values
NAT-WH01 DRP WARNING: Sen slope based on tied non-censored values
NAT-WH01 NH4N WARNING: Sen slope based on tied non-censored values
NAT-WH01 TP WARNING: Sen slope based on tied non-censored values
NAT-WH02 NH4N WARNING: Sen slope based on tied non-censored values
NAT-WH03 DRP WARNING: Sen slope based on tied non-censored values
NAT-WH03 NH4N WARNING: Sen slope influenced by censored values
NAT-WN01 NH4N WARNING: Sen slope based on two censored values
NAT-WN02 TP WARNING: Sen slope based on tied non-censored values
NCC-00002 NH4N WARNING: Sen slope influenced by censored values
NCC-00004 DRP WARNING: Sen slope based on tied non-censored values
NCC-00004 NH4N Long run of single value in a Season
NCC-00005 ECOLI WARNING: Sen slope influenced by censored values
NCC-00005 NH4N WARNING: Sen slope influenced by censored values
NCC-00006 DRP WARNING: Sen slope based on tied non-censored values
NCC-00006 NO3N WARNING: Sen slope influenced by censored values
NCC-00009 DRP WARNING: Sen slope influenced by censored values
NCC-00009 NH4N WARNING: Sen slope influenced by censored values
NCC-00010 NH4N WARNING: Sen slope influenced by censored values
NCC-00011 DRP WARNING: Sen slope based on tied non-censored values
NCC-00011 NH4N WARNING: Sen slope influenced by censored values
NCC-00012 ECOLI WARNING: Sen slope influenced by censored values
NCC-00012 NH4N WARNING: Sen slope influenced by censored values
NCC-00013 NH4N WARNING: Sen slope influenced by censored values
NCC-00015 NH4N WARNING: Sen slope influenced by censored values
NCC-00015 NO3N WARNING: Sen slope influenced by censored values
NCC-00016 NO3N WARNING: Sen slope influenced by censored values
NCC-00017 ECOLI WARNING: Sen slope influenced by censored values
NCC-00017 NH4N WARNING: Sen slope influenced by censored values
NCC-00018 NH4N WARNING: Sen slope influenced by censored values
NCC-00021 NH4N WARNING: Sen slope influenced by censored values
NCC-00025 NH4N WARNING: Sen slope influenced by censored values
NCC-00025 NO3N WARNING: Sen slope influenced by censored values
NCC-00027 NH4N WARNING: Sen slope influenced by censored values
NCC-00028 ECOLI WARNING: Sen slope influenced by censored values
NCC-00028 NH4N WARNING: Sen slope influenced by censored values
NCC-00029 NH4N WARNING: Sen slope influenced by censored values
NCC-00030 NH4N WARNING: Sen slope influenced by censored values
NCC-00030 NO3N WARNING: Sen slope influenced by censored values
NCC-00032 ECOLI WARNING: Sen slope influenced by censored values
NCC-00032 NH4N WARNING: Sen slope influenced by censored values
NCC-00034 CLAR WARNING: Sen slope based on tied non-censored values
NCC-00034 NH4N WARNING: Sen slope influenced by censored values
NCC-00034 NO3N WARNING: Sen slope influenced by censored values
NCC-00036 ECOLI WARNING: Sen slope influenced by censored values
NCC-00036 NH4N WARNING: Sen slope influenced by censored values
NCC-00036 NO3N WARNING: Sen slope influenced by censored values
NCC-00037 ECOLI WARNING: Sen slope influenced by censored values
NCC-00037 NH4N WARNING: Sen slope influenced by censored values
NCC-00038 NH4N WARNING: Sen slope influenced by censored values
NCC-00039 ECOLI WARNING: Sen slope influenced by censored values
NCC-00039 NH4N WARNING: Sen slope influenced by censored values
NCC-00040 NH4N WARNING: Sen slope influenced by censored values
NCC-00040 NO3N WARNING: Sen slope influenced by censored values
NRC-00002 DRP WARNING: Sen slope influenced by censored values
NRC-00002 NH4N WARNING: Sen slope influenced by censored values
NRC-00002 NO3N WARNING: Sen slope influenced by censored values
NRC-00004 TURB WARNING: Sen slope influenced by censored values
NRC-00005 DRP WARNING: Sen slope influenced by censored values
NRC-00005 NH4N WARNING: Sen slope influenced by censored values
NRC-00006 CLAR WARNING: Sen slope influenced by censored values
NRC-00006 NH4N WARNING: Sen slope influenced by censored values
NRC-00006 NO3N WARNING: Sen slope influenced by censored values
NRC-00006 TURB WARNING: Sen slope influenced by censored values
NRC-00007 CLAR WARNING: Sen slope influenced by censored values
NRC-00007 DRP WARNING: Sen slope based on two censored values
NRC-00007 ECOLI WARNING: Sen slope influenced by censored values
NRC-00007 NH4N WARNING: Sen slope influenced by censored values
NRC-00007 TN WARNING: Sen slope influenced by censored values
NRC-00007 TP WARNING: Sen slope influenced by censored values
NRC-00008 DRP WARNING: Sen slope influenced by censored values
NRC-00008 NH4N WARNING: Sen slope influenced by censored values
NRC-00008 NO3N WARNING: Sen slope influenced by censored values
NRC-00008 TURB WARNING: Sen slope influenced by censored values
NRC-00009 DRP WARNING: Sen slope influenced by censored values
NRC-00009 NH4N WARNING: Sen slope influenced by censored values
NRC-00009 NO3N WARNING: Sen slope influenced by censored values
NRC-00009 TURB WARNING: Sen slope influenced by censored values
NRC-00010 DRP WARNING: Sen slope influenced by censored values
NRC-00010 NH4N WARNING: Sen slope influenced by censored values
NRC-00010 TP WARNING: Sen slope influenced by censored values
NRC-00011 NH4N WARNING: Sen slope influenced by censored values
NRC-00011 TN WARNING: Sen slope influenced by censored values
NRC-00013 DRP WARNING: Sen slope influenced by censored values
NRC-00013 NH4N WARNING: Sen slope influenced by censored values
NRC-00015 CLAR WARNING: Sen slope influenced by censored values
NRC-00015 NH4N WARNING: Sen slope influenced by censored values
NRC-00015 TURB WARNING: Sen slope influenced by censored values
NRC-00016 CLAR WARNING: Sen slope influenced by censored values
NRC-00016 NH4N WARNING: Sen slope influenced by censored values
NRC-00017 CLAR WARNING: Sen slope based on tied non-censored values
NRC-00017 DRP WARNING: Sen slope based on tied non-censored values
NRC-00017 NO3N WARNING: Sen slope influenced by censored values
NRC-00018 NO3N WARNING: Sen slope influenced by censored values
NRC-00019 DRP WARNING: Sen slope influenced by censored values
NRC-00019 NO3N WARNING: Sen slope based on tied non-censored values
NRC-00020 DRP WARNING: Sen slope influenced by censored values
NRC-00020 NH4N WARNING: Sen slope influenced by censored values
NRC-00020 TN WARNING: Sen slope influenced by censored values
NRC-00021 DRP WARNING: Sen slope influenced by censored values
NRC-00021 TURB WARNING: Sen slope influenced by censored values
NRC-00022 CLAR WARNING: Sen slope influenced by censored values
NRC-00022 NH4N WARNING: Sen slope influenced by censored values
NRC-00022 NO3N WARNING: Sen slope influenced by censored values
NRC-00022 TN WARNING: Sen slope influenced by censored values
NRC-00022 TURB WARNING: Sen slope influenced by censored values
NRC-00024 NO3N WARNING: Sen slope influenced by censored values
NRC-00024 TN WARNING: Sen slope influenced by censored values
NRC-00029 DRP WARNING: Sen slope influenced by censored values
NRC-00029 NH4N WARNING: Sen slope influenced by censored values
NRC-00029 NO3N WARNING: Sen slope influenced by censored values
NRC-00029 TN WARNING: Sen slope influenced by censored values
NRC-00029 TP WARNING: Sen slope influenced by censored values
NRC-00030 CLAR WARNING: Sen slope influenced by censored values
NRC-00030 NH4N WARNING: Sen slope influenced by censored values
NRC-00031 DRP WARNING: Sen slope influenced by censored values
NRC-00031 TURB WARNING: Sen slope influenced by censored values
ORC-00013 DRP WARNING: Sen slope influenced by censored values
ORC-00013 NH4N WARNING: Sen slope based on two censored values
ORC-00015 DRP WARNING: Sen slope influenced by censored values
ORC-00015 ECOLI WARNING: Sen slope influenced by censored values
ORC-00015 NH4N WARNING: Sen slope influenced by censored values
ORC-00015 NO3N WARNING: Sen slope influenced by censored values
ORC-00015 TN WARNING: Sen slope influenced by censored values
ORC-00015 TP WARNING: Sen slope based on two censored values
ORC-00017 NH4N WARNING: Sen slope influenced by censored values
ORC-00021 NH4N WARNING: Sen slope influenced by censored values
ORC-00025 NH4N WARNING: Sen slope influenced by censored values
ORC-00040 NH4N WARNING: Sen slope based on two censored values
ORC-00040 TN WARNING: Sen slope influenced by censored values
ORC-00041 DRP WARNING: Sen slope influenced by censored values
ORC-00041 NH4N WARNING: Sen slope influenced by censored values
ORC-00043 DRP WARNING: Sen slope based on tied non-censored values
ORC-00043 ECOLI WARNING: Sen slope based on tied non-censored values
ORC-00043 NH4N WARNING: Sen slope influenced by censored values
ORC-00043 NO3N WARNING: Sen slope influenced by censored values
ORC-00043 TP WARNING: Sen slope influenced by censored values
ORC-00046 NH4N WARNING: Sen slope influenced by censored values
ORC-00047 DRP WARNING: Sen slope based on tied non-censored values
ORC-00048 DRP WARNING: Sen slope influenced by censored values
ORC-00048 ECOLI WARNING: Sen slope influenced by censored values
ORC-00048 NH4N WARNING: Sen slope influenced by censored values
ORC-00048 TN WARNING: Sen slope influenced by censored values
ORC-00049 DRP WARNING: Sen slope influenced by censored values
ORC-00049 NH4N WARNING: Sen slope influenced by censored values
ORC-00061 NH4N WARNING: Sen slope influenced by censored values
ORC-00070 NH4N WARNING: Sen slope influenced by censored values
ORC-00070 NO3N WARNING: Sen slope influenced by censored values
ORC-00071 DRP WARNING: Sen slope influenced by censored values
ORC-00071 NH4N WARNING: Sen slope influenced by censored values
ORC-00071 TN WARNING: Sen slope based on tied non-censored values
ORC-00071 TP WARNING: Sen slope influenced by censored values
ORC-00074 DRP WARNING: Sen slope influenced by censored values
ORC-00074 NH4N WARNING: Sen slope influenced by censored values
ORC-00074 NO3N WARNING: Sen slope influenced by censored values
ORC-00074 TP WARNING: Sen slope influenced by censored values
ORC-00079 DRP WARNING: Sen slope influenced by censored values
ORC-00081 DRP WARNING: Sen slope influenced by censored values
ORC-00081 NH4N WARNING: Sen slope influenced by censored values
ORC-00085 DRP WARNING: Sen slope based on two censored values
ORC-00085 ECOLI WARNING: Sen slope based on tied non-censored values
ORC-00085 NH4N WARNING: Sen slope influenced by censored values
ORC-00089 DRP WARNING: Sen slope based on two censored values
ORC-00089 NH4N WARNING: Sen slope influenced by censored values
ORC-00089 TP WARNING: Sen slope influenced by censored values
ORC-00095 NH4N WARNING: Sen slope influenced by censored values
ORC-00103 DRP WARNING: Sen slope influenced by censored values
ORC-00103 ECOLI WARNING: Sen slope influenced by censored values
ORC-00103 NH4N WARNING: Sen slope influenced by censored values
ORC-00105 NH4N WARNING: Sen slope influenced by censored values
ORC-00107 DRP WARNING: Sen slope influenced by censored values
ORC-00107 NH4N WARNING: Sen slope influenced by censored values
ORC-00107 TN WARNING: Sen slope influenced by censored values
ORC-00115 DRP WARNING: Sen slope based on two censored values
ORC-00115 ECOLI WARNING: Sen slope influenced by censored values
ORC-00115 NH4N WARNING: Sen slope influenced by censored values
ORC-00115 TN WARNING: Sen slope influenced by censored values
ORC-00117 NH4N WARNING: Sen slope influenced by censored values
ORC-00119 NH4N WARNING: Sen slope influenced by censored values
ORC-00130 NH4N WARNING: Sen slope influenced by censored values
ORC-00131 NH4N WARNING: Sen slope influenced by censored values
ORC-00133 DRP WARNING: Sen slope influenced by censored values
ORC-00154 NH4N WARNING: Sen slope influenced by censored values
ORC-00154 NO3N WARNING: Sen slope influenced by censored values
ORC-00156 NH4N WARNING: Sen slope influenced by censored values
ORC-00159 DRP WARNING: Sen slope based on tied non-censored values
ORC-00159 NH4N WARNING: Sen slope influenced by censored values
ORC-00159 NO3N WARNING: Sen slope influenced by censored values
ORC-00159 TP WARNING: Sen slope based on tied non-censored values
ORC-00162 DRP WARNING: Sen slope based on tied non-censored values
ORC-00162 NH4N WARNING: Sen slope influenced by censored values
ORC-00162 NO3N WARNING: Sen slope based on tied non-censored values
ORC-00163 NH4N WARNING: Sen slope influenced by censored values
TDC-00002 DRP WARNING: Sen slope influenced by censored values
TDC-00002 ECOLI WARNING: Sen slope based on tied non-censored values
TDC-00002 NH4N WARNING: Sen slope influenced by censored values
TDC-00002 TN WARNING: Sen slope based on tied non-censored values
TDC-00002 TP WARNING: Sen slope influenced by censored values
TDC-00014 DRP WARNING: Sen slope based on two censored values
TDC-00014 NH4N < 3 unique values
TDC-00014 TP WARNING: Sen slope influenced by censored values
TDC-00015 DRP WARNING: Sen slope influenced by censored values
TDC-00015 NH4N WARNING: Sen slope influenced by censored values
TDC-00015 TP WARNING: Sen slope based on two censored values
TDC-00020 ECOLI WARNING: Sen slope influenced by censored values
TDC-00020 TURB WARNING: Sen slope based on tied non-censored values
TDC-00022 ECOLI WARNING: Sen slope influenced by censored values
TDC-00028 NH4N WARNING: Sen slope influenced by censored values
TDC-00032 ECOLI WARNING: Sen slope influenced by censored values
TDC-00035 NH4N WARNING: Sen slope influenced by censored values
TDC-00036 DRP WARNING: Sen slope based on two censored values
TDC-00036 ECOLI WARNING: Sen slope influenced by censored values
TDC-00036 NH4N < 5 Non-censored values
TDC-00036 TN WARNING: Sen slope influenced by censored values
TDC-00036 TP WARNING: Sen slope based on two censored values
TDC-00038 NH4N WARNING: Sen slope influenced by censored values
TDC-00046 NH4N WARNING: Sen slope influenced by censored values
TRC-00001 NH4N WARNING: Sen slope influenced by censored values
TRC-00001 TP WARNING: Sen slope based on tied non-censored values
TRC-00001 TURB WARNING: Sen slope based on tied non-censored values
TRC-00004 NH4N WARNING: Sen slope influenced by censored values
TRC-00004 NO3N WARNING: Sen slope influenced by censored values
TRC-00004 TN WARNING: Sen slope influenced by censored values
TRC-00004 TURB WARNING: Sen slope based on tied non-censored values
TRC-00005 TURB WARNING: Sen slope based on tied non-censored values
TRC-00006 NO3N WARNING: Sen slope influenced by censored values
TRC-00006 TN WARNING: Sen slope influenced by censored values
TRC-00006 TP WARNING: Sen slope based on tied non-censored values
TRC-00007 TURB WARNING: Sen slope based on tied non-censored values
TRC-00008 DRP WARNING: Sen slope based on tied non-censored values
TRC-00008 NH4N WARNING: Sen slope influenced by censored values
TRC-00008 NO3N WARNING: Sen slope influenced by censored values
TRC-00008 TN WARNING: Sen slope influenced by censored values
TRC-00011 NH4N WARNING: Sen slope influenced by censored values
WCRC-00002 NH4N WARNING: Sen slope influenced by censored values
WCRC-00003 ECOLI WARNING: Sen slope influenced by censored values
WCRC-00008 ECOLI WARNING: Sen slope influenced by censored values
WCRC-00008 NH4N WARNING: Sen slope influenced by censored values
WCRC-00018 CLAR WARNING: Sen slope based on tied non-censored values
WCRC-00019 ECOLI WARNING: Sen slope influenced by censored values
WCRC-00024 ECOLI WARNING: Sen slope influenced by censored values
WCRC-00025 NH4N WARNING: Sen slope influenced by censored values
WCRC-00025 TURB WARNING: Sen slope based on tied non-censored values
WCRC-00026 NH4N WARNING: Sen slope influenced by censored values
WCRC-00027 NH4N WARNING: Sen slope influenced by censored values
WCRC-00031 ECOLI WARNING: Sen slope influenced by censored values
WCRC-00032 DRP WARNING: Sen slope influenced by censored values
WCRC-00032 ECOLI WARNING: Sen slope influenced by censored values
WCRC-00032 NH4N WARNING: Sen slope influenced by censored values
WCRC-00033 DRP WARNING: Sen slope influenced by censored values
WCRC-00033 ECOLI WARNING: Sen slope influenced by censored values
WCRC-00033 NH4N WARNING: Sen slope influenced by censored values
WCRC-00036 DRP WARNING: Sen slope based on two censored values
WCRC-00036 ECOLI WARNING: Sen slope influenced by censored values
WCRC-00036 NH4N WARNING: Sen slope influenced by censored values
WCRC-00036 TN WARNING: Sen slope influenced by censored values
WCRC-00036 TURB WARNING: Sen slope based on tied non-censored values
WCRC-00037 ECOLI WARNING: Sen slope influenced by censored values
WCRC-00039 NH4N WARNING: Sen slope based on two censored values
WCRC-00040 DRP WARNING: Sen slope influenced by censored values
WCRC-00040 NH4N Long run of single value in a Season
WCRC-00040 TURB WARNING: Sen slope based on tied non-censored values
ES-00028 MCI WARNING: Sen slope based on tied non-censored values
ES-00112 MCI WARNING: Sen slope based on tied non-censored values
HRC-00060 MCI WARNING: Sen slope based on tied non-censored values
LAWA-100194 MCI WARNING: Sen slope based on tied non-censored values
NCC-00002 MCI WARNING: Sen slope based on tied non-censored values
NCC-00012 MCI WARNING: Sen slope based on tied non-censored values
NCC-00017 MCI WARNING: Sen slope based on tied non-censored values
TRC-00004 MCI WARNING: Sen slope based on tied non-censored values
TRC-00082 MCI WARNING: Sen slope based on tied non-censored values
TRC-10012 MCI WARNING: Sen slope based on tied non-censored values
ARC-00001 DRP WARNING: Sen slope based on tied non-censored values
ARC-00001 NH4N WARNING: Sen slope influenced by censored values
ARC-00004 DRP WARNING: Sen slope influenced by censored values
ARC-00005 DRP WARNING: Sen slope influenced by censored values
ARC-00008 DRP WARNING: Sen slope influenced by censored values
ARC-00009 NH4N WARNING: Sen slope influenced by censored values
ARC-00014 DRP WARNING: Sen slope influenced by censored values
ARC-00026 DRP WARNING: Sen slope influenced by censored values
EBOP-00010 NH4N WARNING: Sen slope based on tied non-censored values
EBOP-00012 NH4N WARNING: Sen slope based on tied non-censored values
ECAN-00014 NH4N WARNING: Sen slope influenced by censored values
ECAN-00018 DRP WARNING: Sen slope influenced by censored values
ECAN-00018 NH4N WARNING: Sen slope influenced by censored values
ECAN-00018 TP WARNING: Sen slope influenced by censored values
ECAN-00020 DRP WARNING: Sen slope influenced by censored values
ECAN-00020 NH4N WARNING: Sen slope influenced by censored values
ECAN-00020 NO3N WARNING: Sen slope influenced by censored values
ECAN-00020 TN WARNING: Sen slope influenced by censored values
ECAN-00020 TP WARNING: Sen slope influenced by censored values
ECAN-00025 DRP WARNING: Sen slope influenced by censored values
ECAN-00025 NH4N WARNING: Sen slope influenced by censored values
ECAN-00025 TP WARNING: Sen slope influenced by censored values
ECAN-00026 DRP WARNING: Sen slope influenced by censored values
ECAN-00026 TP WARNING: Sen slope influenced by censored values
ECAN-00038 TP WARNING: Sen slope influenced by censored values
ECAN-00040 DRP WARNING: Sen slope based on tied non-censored values
ECAN-00040 NH4N WARNING: Sen slope influenced by censored values
ECAN-00040 TP WARNING: Sen slope influenced by censored values
ECAN-00042 NO3N WARNING: Sen slope influenced by censored values
ECAN-00047 NH4N WARNING: Sen slope influenced by censored values
ECAN-00049 DRP WARNING: Sen slope influenced by censored values
ECAN-00050 NH4N WARNING: Sen slope influenced by censored values
ECAN-00050 TP WARNING: Sen slope influenced by censored values
ECAN-00057 DRP WARNING: Sen slope based on tied non-censored values
ECAN-00057 NH4N WARNING: Sen slope influenced by censored values
ECAN-00059 DRP WARNING: Sen slope based on tied non-censored values
ECAN-00059 NH4N WARNING: Sen slope influenced by censored values
ECAN-00084 NH4N WARNING: Sen slope influenced by censored values
ECAN-00085 NH4N WARNING: Sen slope influenced by censored values
ECAN-00088 DRP WARNING: Sen slope influenced by censored values
ECAN-00088 NO3N WARNING: Sen slope based on tied non-censored values
ECAN-00088 TP WARNING: Sen slope influenced by censored values
ECAN-00093 NH4N WARNING: Sen slope influenced by censored values
ECAN-00097 TN WARNING: Sen slope based on tied non-censored values
ECAN-00101 NH4N WARNING: Sen slope influenced by censored values
ECAN-00102 NH4N WARNING: Sen slope influenced by censored values
ECAN-00102 TP WARNING: Sen slope influenced by censored values
ECAN-00176 NH4N WARNING: Sen slope influenced by censored values
ECAN-00181 NH4N WARNING: Sen slope influenced by censored values
ECAN-00181 TP WARNING: Sen slope influenced by censored values
ES-00002 DRP WARNING: Sen slope influenced by censored values
ES-00002 ECOLI WARNING: Sen slope influenced by censored values
ES-00002 NH4N WARNING: Sen slope influenced by censored values
ES-00002 TP WARNING: Sen slope based on two censored values
ES-00003 DRP WARNING: Sen slope based on two censored values
ES-00003 ECOLI WARNING: Sen slope influenced by censored values
ES-00003 NH4N WARNING: Sen slope influenced by censored values
ES-00003 NO3N WARNING: Sen slope influenced by censored values
ES-00003 TN WARNING: Sen slope influenced by censored values
ES-00003 TP WARNING: Sen slope based on two censored values
ES-00004 DRP WARNING: Sen slope influenced by censored values
ES-00004 NH4N WARNING: Sen slope influenced by censored values
ES-00004 TN WARNING: Sen slope influenced by censored values
ES-00008 DRP WARNING: Sen slope based on tied non-censored values
ES-00009 DRP WARNING: Sen slope based on two censored values
ES-00009 NH4N WARNING: Sen slope influenced by censored values
ES-00009 TN WARNING: Sen slope influenced by censored values
ES-00013 DRP WARNING: Sen slope influenced by censored values
ES-00013 ECOLI WARNING: Sen slope influenced by censored values
ES-00013 NH4N WARNING: Sen slope influenced by censored values
ES-00013 TP WARNING: Sen slope influenced by censored values
ES-00014 DRP WARNING: Sen slope based on tied non-censored values
ES-00014 ECOLI WARNING: Sen slope influenced by censored values
ES-00016 ECOLI WARNING: Sen slope based on tied non-censored values
ES-00016 NH4N WARNING: Sen slope influenced by censored values
ES-00016 TN WARNING: Sen slope influenced by censored values
ES-00017 ECOLI WARNING: Sen slope based on tied non-censored values
ES-00018 NH4N WARNING: Sen slope influenced by censored values
ES-00019 NH4N WARNING: Sen slope influenced by censored values
ES-00021 NH4N WARNING: Sen slope influenced by censored values
ES-00025 NH4N WARNING: Sen slope influenced by censored values
ES-00026 NH4N WARNING: Sen slope influenced by censored values
ES-00026 NO3N WARNING: Sen slope influenced by censored values
ES-00026 TP WARNING: Sen slope influenced by censored values
ES-00027 CLAR WARNING: Sen slope based on tied non-censored values
ES-00029 CLAR WARNING: Sen slope influenced by censored values
ES-00029 ECOLI WARNING: Sen slope influenced by censored values
ES-00029 NH4N WARNING: Sen slope influenced by censored values
ES-00030 NH4N WARNING: Sen slope influenced by censored values
ES-00036 NH4N WARNING: Sen slope influenced by censored values
ES-00037 NH4N WARNING: Sen slope influenced by censored values
ES-00072 NH4N WARNING: Sen slope influenced by censored values
EW-00001 DRP WARNING: Sen slope based on tied non-censored values
EW-00001 NH4N WARNING: Sen slope influenced by censored values
EW-00002 DRP WARNING: Sen slope influenced by censored values
EW-00002 NH4N WARNING: Sen slope influenced by censored values
EW-00003 DRP WARNING: Sen slope influenced by censored values
EW-00003 NH4N WARNING: Sen slope influenced by censored values
EW-00003 TP WARNING: Sen slope based on tied non-censored values
EW-00004 DRP WARNING: Sen slope influenced by censored values
EW-00005 CLAR WARNING: Sen slope influenced by censored values
EW-00005 DRP WARNING: Sen slope influenced by censored values
EW-00005 NH4N Long run of single value in a Season
EW-00005 NO3N WARNING: Sen slope influenced by censored values
EW-00006 NH4N WARNING: Sen slope influenced by censored values
EW-00006 NO3N WARNING: Sen slope influenced by censored values
EW-00007 DRP WARNING: Sen slope influenced by censored values
EW-00007 NH4N WARNING: Sen slope influenced by censored values
EW-00008 CLAR WARNING: Sen slope influenced by censored values
EW-00008 NH4N WARNING: Sen slope influenced by censored values
EW-00008 NO3N WARNING: Sen slope based on tied non-censored values
EW-00009 DRP WARNING: Sen slope influenced by censored values
EW-00009 NH4N WARNING: Sen slope influenced by censored values
EW-00009 NO3N WARNING: Sen slope influenced by censored values
EW-00009 TP WARNING: Sen slope influenced by censored values
EW-00012 CLAR WARNING: Sen slope based on tied non-censored values
EW-00013 DRP WARNING: Sen slope influenced by censored values
EW-00013 NH4N WARNING: Sen slope influenced by censored values
EW-00016 NH4N Long run of single value in a Season
EW-00017 NH4N WARNING: Sen slope influenced by censored values
EW-00018 NH4N WARNING: Sen slope influenced by censored values
EW-00019 NH4N WARNING: Sen slope influenced by censored values
EW-00021 NO3N WARNING: Sen slope based on tied non-censored values
EW-00022 DRP WARNING: Sen slope based on tied non-censored values
EW-00022 NH4N WARNING: Sen slope influenced by censored values
EW-00022 NO3N WARNING: Sen slope influenced by censored values
EW-00023 ECOLI WARNING: Sen slope based on tied non-censored values
EW-00023 NH4N Long run of single value in a Season
EW-00027 NH4N WARNING: Sen slope influenced by censored values
EW-00028 DRP WARNING: Sen slope influenced by censored values
EW-00028 NH4N WARNING: Sen slope influenced by censored values
EW-00031 NH4N Long run of single value in a Season
EW-00033 DRP WARNING: Sen slope influenced by censored values
EW-00033 NH4N < 3 unique values in Season
EW-00034 DRP WARNING: Sen slope influenced by censored values
EW-00034 NH4N WARNING: Sen slope influenced by censored values
EW-00034 TP WARNING: Sen slope influenced by censored values
EW-00035 CLAR WARNING: Sen slope based on tied non-censored values
EW-00037 DRP WARNING: Sen slope based on tied non-censored values
EW-00037 NH4N WARNING: Sen slope influenced by censored values
EW-00040 NH4N WARNING: Sen slope influenced by censored values
EW-00042 CLAR WARNING: Sen slope influenced by censored values
EW-00042 DRP WARNING: Sen slope based on tied non-censored values
EW-00042 NH4N WARNING: Sen slope influenced by censored values
EW-00043 DRP WARNING: Sen slope influenced by censored values
EW-00043 NH4N WARNING: Sen slope influenced by censored values
EW-00044 DRP WARNING: Sen slope based on tied non-censored values
EW-00044 NH4N WARNING: Sen slope influenced by censored values
EW-00045 DRP WARNING: Sen slope influenced by censored values
EW-00045 NH4N WARNING: Sen slope influenced by censored values
EW-00046 DRP WARNING: Sen slope influenced by censored values
EW-00046 NH4N WARNING: Sen slope influenced by censored values
EW-00046 NO3N WARNING: Sen slope based on tied non-censored values
EW-00047 DRP WARNING: Sen slope influenced by censored values
EW-00047 NH4N WARNING: Sen slope influenced by censored values
EW-00048 NH4N WARNING: Sen slope influenced by censored values
EW-00049 DRP WARNING: Sen slope influenced by censored values
EW-00049 NH4N WARNING: Sen slope influenced by censored values
EW-00050 NH4N WARNING: Sen slope influenced by censored values
EW-00051 NH4N WARNING: Sen slope influenced by censored values
EW-00052 DRP WARNING: Sen slope influenced by censored values
EW-00052 NH4N WARNING: Sen slope influenced by censored values
EW-00053 ECOLI WARNING: Sen slope based on tied non-censored values
EW-00053 NH4N WARNING: Sen slope influenced by censored values
EW-00053 TP WARNING: Sen slope based on tied non-censored values
EW-00054 NH4N WARNING: Sen slope influenced by censored values
EW-00056 NH4N WARNING: Sen slope influenced by censored values
EW-00057 NH4N WARNING: Sen slope influenced by censored values
EW-00058 NH4N WARNING: Sen slope influenced by censored values
EW-00059 NH4N < 3 unique values in Season
EW-00060 NH4N WARNING: Sen slope influenced by censored values
EW-00061 NH4N WARNING: Sen slope influenced by censored values
EW-00063 NH4N WARNING: Sen slope influenced by censored values
EW-00063 TP WARNING: Sen slope based on tied non-censored values
EW-00064 NH4N WARNING: Sen slope influenced by censored values
EW-00064 TP WARNING: Sen slope based on tied non-censored values
EW-00065 DRP WARNING: Sen slope influenced by censored values
EW-00065 NH4N < 3 unique values in Season
EW-00065 NO3N WARNING: Sen slope influenced by censored values
EW-00065 TP WARNING: Sen slope influenced by censored values
EW-00066 DRP WARNING: Sen slope influenced by censored values
EW-00066 NH4N WARNING: Sen slope influenced by censored values
EW-00066 NO3N WARNING: Sen slope influenced by censored values
EW-00066 TP WARNING: Sen slope influenced by censored values
EW-00068 DRP WARNING: Sen slope based on tied non-censored values
EW-00068 NH4N WARNING: Sen slope influenced by censored values
EW-00070 DRP WARNING: Sen slope based on tied non-censored values
EW-00070 NH4N WARNING: Sen slope influenced by censored values
EW-00071 DRP WARNING: Sen slope based on tied non-censored values
EW-00071 NH4N < 3 unique values in Season
EW-00072 ECOLI WARNING: Sen slope based on tied non-censored values
EW-00072 NH4N Long run of single value in a Season
EW-00073 DRP WARNING: Sen slope influenced by censored values
EW-00073 NH4N WARNING: Sen slope influenced by censored values
EW-00074 ECOLI WARNING: Sen slope based on tied non-censored values
EW-00074 NH4N WARNING: Sen slope influenced by censored values
EW-00075 NH4N Long run of single value in a Season
EW-00076 NH4N WARNING: Sen slope influenced by censored values
EW-00077 DRP WARNING: Sen slope based on tied non-censored values
EW-00077 ECOLI WARNING: Sen slope influenced by censored values
EW-00078 NH4N WARNING: Sen slope influenced by censored values
EW-00079 ECOLI WARNING: Sen slope based on tied non-censored values
EW-00079 NH4N < 3 unique values in Season
EW-00082 NH4N WARNING: Sen slope influenced by censored values
EW-00083 ECOLI WARNING: Sen slope influenced by censored values
EW-00083 NH4N Long run of single value in a Season
EW-00084 NH4N < 3 unique values in Season
EW-00085 NH4N Long run of single value in a Season
EW-00086 DRP WARNING: Sen slope influenced by censored values
EW-00086 ECOLI WARNING: Sen slope influenced by censored values
EW-00086 NH4N < 3 unique values in Season
EW-00086 TP WARNING: Sen slope based on tied non-censored values
EW-00087 NH4N WARNING: Sen slope influenced by censored values
EW-00087 NO3N WARNING: Sen slope influenced by censored values
EW-00088 NH4N WARNING: Sen slope influenced by censored values
EW-00089 NH4N WARNING: Sen slope influenced by censored values
EW-00090 DRP WARNING: Sen slope influenced by censored values
EW-00090 ECOLI WARNING: Sen slope influenced by censored values
EW-00092 DRP WARNING: Sen slope influenced by censored values
EW-00092 NH4N Long run of single value in a Season
EW-00093 NH4N WARNING: Sen slope influenced by censored values
EW-00094 CLAR WARNING: Sen slope based on tied non-censored values
EW-00094 NH4N Long run of single value in a Season
EW-00095 NH4N WARNING: Sen slope influenced by censored values
EW-00096 NH4N Long run of single value
EW-00097 NH4N WARNING: Sen slope influenced by censored values
EW-00097 NO3N WARNING: Sen slope influenced by censored values
EW-00098 ECOLI WARNING: Sen slope based on tied non-censored values
EW-00099 DRP Long run of single value in a Season
EW-00099 NH4N WARNING: Sen slope influenced by censored values
EW-00100 DRP WARNING: Sen slope based on tied non-censored values
EW-00100 NH4N WARNING: Sen slope influenced by censored values
EW-00101 NH4N WARNING: Sen slope influenced by censored values
EW-00104 DRP WARNING: Sen slope influenced by censored values
EW-00104 NH4N WARNING: Sen slope influenced by censored values
EW-00105 DRP WARNING: Sen slope influenced by censored values
EW-00105 NH4N WARNING: Sen slope influenced by censored values
EW-00106 DRP WARNING: Sen slope influenced by censored values
EW-00106 NH4N WARNING: Sen slope influenced by censored values
EW-00106 NO3N WARNING: Sen slope influenced by censored values
EW-00106 TP WARNING: Sen slope influenced by censored values
EW-00108 NH4N Long run of single value in a Season
EW-00109 NH4N WARNING: Sen slope influenced by censored values
EW-00110 DRP WARNING: Sen slope influenced by censored values
EW-00110 NH4N WARNING: Sen slope influenced by censored values
EW-00111 NH4N WARNING: Sen slope influenced by censored values
EW-00114 DRP WARNING: Sen slope influenced by censored values
EW-00114 NH4N WARNING: Sen slope influenced by censored values
EW-00114 NO3N WARNING: Sen slope influenced by censored values
EW-00115 DRP WARNING: Sen slope influenced by censored values
EW-00115 NH4N WARNING: Sen slope influenced by censored values
EW-00115 NO3N WARNING: Sen slope influenced by censored values
EW-00118 NH4N WARNING: Sen slope influenced by censored values
EW-00119 DRP WARNING: Sen slope influenced by censored values
EW-00119 ECOLI WARNING: Sen slope influenced by censored values
EW-00119 NH4N WARNING: Sen slope influenced by censored values
EW-00119 NO3N WARNING: Sen slope influenced by censored values
EW-00119 TP WARNING: Sen slope influenced by censored values
GDC-00003 DRP WARNING: Sen slope influenced by censored values
GDC-00004 DRP WARNING: Sen slope based on tied non-censored values
GDC-00010 DRP WARNING: Sen slope based on tied non-censored values
GDC-00017 DRP Long run of single value in a Season
GDC-00021 DRP WARNING: Sen slope based on tied non-censored values
GDC-00022 DRP WARNING: Sen slope based on tied non-censored values
GDC-00023 DRP WARNING: Sen slope based on tied non-censored values
GDC-00023 ECOLI WARNING: Sen slope based on tied non-censored values
GDC-00024 DRP Long run of single value in a Season
GDC-00027 DRP WARNING: Sen slope based on tied non-censored values
GDC-00028 DRP WARNING: Sen slope based on tied non-censored values
HBRC-00002 NH4N WARNING: Sen slope influenced by censored values
HBRC-00002 NO3N WARNING: Sen slope based on tied non-censored values
HBRC-00002 TP WARNING: Sen slope based on tied non-censored values
HBRC-00003 NH4N WARNING: Sen slope influenced by censored values
HBRC-00004 NH4N WARNING: Sen slope influenced by censored values
HBRC-00004 TP WARNING: Sen slope based on tied non-censored values
HBRC-00005 DRP WARNING: Sen slope based on tied non-censored values
HBRC-00005 NH4N WARNING: Sen slope based on two censored values
HBRC-00005 NO3N WARNING: Sen slope influenced by censored values
HBRC-00006 CLAR WARNING: Sen slope based on tied non-censored values
HBRC-00006 DRP WARNING: Sen slope influenced by censored values
HBRC-00006 NH4N WARNING: Sen slope influenced by censored values
HBRC-00007 DRP WARNING: Sen slope influenced by censored values
HBRC-00007 NH4N WARNING: Sen slope influenced by censored values
HBRC-00008 DRP WARNING: Sen slope influenced by censored values
HBRC-00008 NH4N WARNING: Sen slope based on two censored values
HBRC-00009 CLAR WARNING: Sen slope based on tied non-censored values
HBRC-00009 NH4N WARNING: Sen slope influenced by censored values
HBRC-00010 NH4N WARNING: Sen slope influenced by censored values
HBRC-00010 NO3N WARNING: Sen slope influenced by censored values
HBRC-00012 NH4N WARNING: Sen slope influenced by censored values
HBRC-00012 TP WARNING: Sen slope influenced by censored values
HBRC-00015 NH4N WARNING: Sen slope influenced by censored values
HBRC-00017 NH4N WARNING: Sen slope influenced by censored values
HBRC-00017 TP WARNING: Sen slope based on two censored values
HBRC-00019 DRP WARNING: Sen slope influenced by censored values
HBRC-00019 NH4N WARNING: Sen slope influenced by censored values
HBRC-00019 TP WARNING: Sen slope influenced by censored values
HBRC-00021 DRP WARNING: Sen slope influenced by censored values
HBRC-00021 NH4N WARNING: Sen slope influenced by censored values
HBRC-00022 TP WARNING: Sen slope based on tied non-censored values
HBRC-00024 NH4N WARNING: Sen slope based on two censored values
HBRC-00024 NO3N WARNING: Sen slope based on tied non-censored values
HBRC-00029 DRP WARNING: Sen slope influenced by censored values
HBRC-00029 NH4N WARNING: Sen slope based on two censored values
HBRC-00030 DRP WARNING: Sen slope influenced by censored values
HBRC-00030 NH4N WARNING: Sen slope based on two censored values
HBRC-00030 TP WARNING: Sen slope influenced by censored values
HBRC-00031 NH4N WARNING: Sen slope influenced by censored values
HBRC-00031 NO3N WARNING: Sen slope influenced by censored values
HBRC-00033 NH4N WARNING: Sen slope based on two censored values
HBRC-00033 NO3N WARNING: Sen slope influenced by censored values
HBRC-00033 TP WARNING: Sen slope influenced by censored values
HBRC-00038 NH4N WARNING: Sen slope based on two censored values
HBRC-00039 DRP WARNING: Sen slope influenced by censored values
HBRC-00039 NH4N WARNING: Sen slope based on two censored values
HBRC-00039 TP WARNING: Sen slope influenced by censored values
HBRC-00040 NH4N WARNING: Sen slope influenced by censored values
HBRC-00041 DRP WARNING: Sen slope influenced by censored values
HBRC-00041 NH4N WARNING: Sen slope influenced by censored values
HBRC-00053 DRP WARNING: Sen slope influenced by censored values
HRC-00002 NH4N WARNING: Sen slope influenced by censored values
HRC-00024 DRP WARNING: Sen slope influenced by censored values
HRC-00046 NO3N WARNING: Sen slope influenced by censored values
HRC-00060 NO3N WARNING: Sen slope influenced by censored values
HRC-00063 NH4N WARNING: Sen slope influenced by censored values
LAWA-100348 DRP WARNING: Sen slope based on tied non-censored values
NAT-AX02 NO3N WARNING: Sen slope based on tied non-censored values
NAT-AX03 NH4N WARNING: Sen slope influenced by censored values
NAT-AX04 DRP WARNING: Sen slope influenced by censored values
NAT-CH01 DRP WARNING: Sen slope influenced by censored values
NAT-DN07 DRP WARNING: Sen slope influenced by censored values
NAT-DN07 NH4N WARNING: Sen slope influenced by censored values
NAT-DN09 DRP WARNING: Sen slope influenced by censored values
NAT-DN09 NH4N WARNING: Sen slope influenced by censored values
NAT-DN09 TP WARNING: Sen slope influenced by censored values
NAT-GS03 NO3N WARNING: Sen slope based on tied non-censored values
NAT-GS04 NO3N WARNING: Sen slope based on tied non-censored values
NAT-GY02 NH4N WARNING: Sen slope based on tied non-censored values
NAT-GY03 TURB WARNING: Sen slope based on tied non-censored values
NAT-GY04 DRP WARNING: Sen slope influenced by censored values
NAT-HV04 DRP WARNING: Sen slope based on tied non-censored values
NAT-HV05 NH4N WARNING: Sen slope influenced by censored values
NAT-NN02 NH4N WARNING: Sen slope influenced by censored values
NAT-NN03 NH4N WARNING: Sen slope influenced by censored values
NAT-NN04 CLAR WARNING: Sen slope based on tied non-censored values
NAT-NN05 NH4N WARNING: Sen slope influenced by censored values
NAT-RO01 NH4N WARNING: Sen slope influenced by censored values
NAT-RO06 NH4N WARNING: Sen slope influenced by censored values
NAT-TK04 NH4N WARNING: Sen slope influenced by censored values
NAT-TK06 DRP WARNING: Sen slope influenced by censored values
NAT-WA03 CLAR WARNING: Sen slope based on tied non-censored values
NAT-WA04 NO3N WARNING: Sen slope influenced by censored values
NAT-WA05 DRP WARNING: Sen slope influenced by censored values
NAT-WA05 NH4N WARNING: Sen slope influenced by censored values
NAT-WA05 NO3N WARNING: Sen slope influenced by censored values
NAT-WA06 NO3N WARNING: Sen slope influenced by censored values
NAT-WA07 NO3N WARNING: Sen slope influenced by censored values
NAT-WN01 DRP WARNING: Sen slope influenced by censored values
NAT-WN01 NH4N WARNING: Sen slope influenced by censored values
NAT-WN02 NH4N WARNING: Sen slope based on tied non-censored values
NRC-00008 NH4N WARNING: Sen slope influenced by censored values
NRC-00008 NO3N WARNING: Sen slope influenced by censored values
NRC-00009 NH4N WARNING: Sen slope influenced by censored values
NRC-00010 DRP WARNING: Sen slope influenced by censored values
NRC-00010 NH4N WARNING: Sen slope influenced by censored values
NRC-00011 NH4N WARNING: Sen slope influenced by censored values
NRC-00015 NH4N WARNING: Sen slope influenced by censored values
ORC-00046 NH4N WARNING: Sen slope based on two censored values
ORC-00046 TP WARNING: Sen slope based on tied non-censored values
ORC-00049 NH4N WARNING: Sen slope based on two censored values
ORC-00061 TP WARNING: Sen slope influenced by censored values
ORC-00071 NH4N WARNING: Sen slope based on two censored values
ORC-00071 NO3N WARNING: Sen slope based on two censored values
ORC-00081 DRP WARNING: Sen slope influenced by censored values
ORC-00081 TP WARNING: Sen slope influenced by censored values
ORC-00082 NH4N WARNING: Sen slope influenced by censored values
ORC-00085 DRP WARNING: Sen slope influenced by censored values
ORC-00085 NH4N WARNING: Sen slope based on two censored values
ORC-00095 NH4N WARNING: Sen slope influenced by censored values
ORC-00103 DRP WARNING: Sen slope influenced by censored values
ORC-00103 NH4N WARNING: Sen slope based on two censored values
ORC-00103 TP WARNING: Sen slope influenced by censored values
ORC-00105 NH4N WARNING: Sen slope influenced by censored values
ORC-00130 DRP WARNING: Sen slope influenced by censored values
ORC-00130 NH4N WARNING: Sen slope based on two censored values
ORC-00131 NO3N WARNING: Sen slope based on tied non-censored values
ORC-00162 TP WARNING: Sen slope based on tied non-censored values
ORC-00163 NH4N WARNING: Sen slope based on two censored values
TRC-00001 CLAR WARNING: Sen slope based on tied non-censored values
TRC-00001 DRP WARNING: Sen slope influenced by censored values
TRC-00001 NH4N WARNING: Sen slope based on tied non-censored values
TRC-00001 TP WARNING: Sen slope based on tied non-censored values
TRC-00004 NH4N WARNING: Sen slope influenced by censored values
TRC-00004 TN WARNING: Sen slope influenced by censored values
TRC-00004 TP WARNING: Sen slope based on tied non-censored values
TRC-00005 NH4N WARNING: Sen slope based on tied non-censored values
TRC-00006 DRP WARNING: Sen slope based on tied non-censored values
TRC-00006 TN WARNING: Sen slope influenced by censored values
TRC-00006 TP WARNING: Sen slope based on tied non-censored values
TRC-00007 NH4N WARNING: Sen slope based on tied non-censored values
TRC-00008 DRP WARNING: Sen slope based on tied non-censored values
TRC-00008 NH4N WARNING: Sen slope influenced by censored values
TRC-00008 TN WARNING: Sen slope influenced by censored values
ES-00006 MCI WARNING: Sen slope based on tied non-censored values
ES-00024 MCI WARNING: Sen slope based on tied non-censored values
NAT-AX03 MCI WARNING: Sen slope based on tied non-censored values
ARC-00001 DRP WARNING: Sen slope based on tied non-censored values
ARC-00001 NH4N WARNING: Sen slope influenced by censored values
ARC-00014 DRP WARNING: Sen slope influenced by censored values
ARC-00018 NH4N WARNING: Sen slope based on tied non-censored values
ARC-00019 DRP WARNING: Sen slope based on tied non-censored values
ARC-00026 DRP WARNING: Sen slope influenced by censored values
EBOP-00010 ECOLI WARNING: Sen slope based on tied non-censored values
ECAN-00084 NH4N WARNING: Sen slope influenced by censored values
ECAN-00086 NH4N WARNING: Sen slope influenced by censored values
ECAN-00100 TP WARNING: Sen slope based on tied non-censored values
ECAN-00101 TP WARNING: Sen slope based on tied non-censored values
ES-00021 DRP WARNING: Sen slope influenced by censored values
EW-00077 DRP WARNING: Sen slope based on tied non-censored values
EW-00078 NH4N WARNING: Sen slope influenced by censored values
EW-00079 NH4N Long run of single value in a Season
EW-00082 NH4N WARNING: Sen slope influenced by censored values
EW-00082 TP WARNING: Sen slope influenced by censored values
EW-00083 NH4N Long run of single value in a Season
EW-00084 NH4N WARNING: Sen slope influenced by censored values
EW-00085 NH4N WARNING: Sen slope influenced by censored values
EW-00086 DRP WARNING: Sen slope influenced by censored values
EW-00086 NH4N Long run of single value in a Season
EW-00119 DRP WARNING: Sen slope influenced by censored values
EW-00119 NH4N WARNING: Sen slope influenced by censored values
EW-00119 NO3N WARNING: Sen slope influenced by censored values
GDC-00003 DRP WARNING: Sen slope influenced by censored values
GDC-00004 DRP WARNING: Sen slope based on tied non-censored values
GDC-00010 DRP WARNING: Sen slope based on tied non-censored values
GDC-00021 DRP WARNING: Sen slope based on tied non-censored values
GDC-00023 DRP WARNING: Sen slope based on tied non-censored values
GDC-00023 ECOLI WARNING: Sen slope based on tied non-censored values
GDC-00024 DRP WARNING: Sen slope based on tied non-censored values
GDC-00027 DRP WARNING: Sen slope based on tied non-censored values
GDC-00028 DRP WARNING: Sen slope based on tied non-censored values
HBRC-00003 NH4N WARNING: Sen slope influenced by censored values
LAWA-100348 DRP WARNING: Sen slope based on tied non-censored values
NAT-AX02 TP WARNING: Sen slope based on tied non-censored values
NAT-AX03 DRP WARNING: Sen slope influenced by censored values
NAT-CH03 DRP WARNING: Sen slope influenced by censored values
NAT-CH04 DRP WARNING: Sen slope influenced by censored values
NAT-DN01 TURB WARNING: Sen slope based on tied non-censored values
NAT-DN02 NO3N WARNING: Sen slope influenced by censored values
NAT-DN04 DRP WARNING: Sen slope influenced by censored values
NAT-DN06 DRP WARNING: Sen slope influenced by censored values
NAT-DN06 NH4N WARNING: Sen slope influenced by censored values
NAT-DN06 TP WARNING: Sen slope based on tied non-censored values
NAT-DN06 TURB WARNING: Sen slope based on tied non-censored values
NAT-DN07 DRP WARNING: Sen slope influenced by censored values
NAT-DN09 DRP WARNING: Sen slope influenced by censored values
NAT-DN09 TURB WARNING: Sen slope based on tied non-censored values
NAT-DN10 TP WARNING: Sen slope influenced by censored values
NAT-GY04 DRP WARNING: Sen slope influenced by censored values
NAT-GY04 NO3N WARNING: Sen slope based on tied non-censored values
NAT-GY04 TURB WARNING: Sen slope based on tied non-censored values
NAT-HM05 TURB WARNING: Sen slope based on tied non-censored values
NAT-HM06 DRP WARNING: Sen slope influenced by censored values
NAT-HM06 TURB WARNING: Sen slope based on tied non-censored values
NAT-HV02 DRP WARNING: Sen slope influenced by censored values
NAT-HV05 NH4N WARNING: Sen slope influenced by censored values
NAT-HV06 TP WARNING: Sen slope based on tied non-censored values
NAT-NN03 NO3N WARNING: Sen slope based on tied non-censored values
NAT-RO01 NO3N WARNING: Sen slope influenced by censored values
NAT-RO06 NO3N WARNING: Sen slope influenced by censored values
NAT-TK01 DRP WARNING: Sen slope based on tied non-censored values
NAT-TK02 DRP WARNING: Sen slope based on tied non-censored values
NAT-TK03 NH4N WARNING: Sen slope based on tied non-censored values
NAT-TK05 DRP WARNING: Sen slope based on tied non-censored values
NAT-TK05 TP WARNING: Sen slope based on tied non-censored values
NAT-WA05 NH4N WARNING: Sen slope influenced by censored values
NAT-WH02 NH4N WARNING: Sen slope based on tied non-censored values
NAT-WN01 NH4N WARNING: Sen slope influenced by censored values
NAT-WN02 DRP WARNING: Sen slope based on tied non-censored values
ORC-00049 NH4N WARNING: Sen slope influenced by censored values
ORC-00071 DRP WARNING: Sen slope influenced by censored values
ORC-00071 NH4N WARNING: Sen slope based on two censored values
ORC-00071 NO3N WARNING: Sen slope influenced by censored values
ORC-00085 DRP WARNING: Sen slope influenced by censored values
ORC-00085 NH4N WARNING: Sen slope influenced by censored values
ORC-00095 NH4N WARNING: Sen slope influenced by censored values
ORC-00103 DRP WARNING: Sen slope influenced by censored values
ORC-00103 NH4N WARNING: Sen slope based on two censored values
ORC-00103 TN WARNING: Sen slope based on tied non-censored values

5.2 LAWA ‘raw’ data

skimr::skim(LAWA_DT)
## Skim summary statistics
##  n obs: 696184 
##  n variables: 11 
## 
## ── Variable type:character ───────────────────────────────────────────────────────────────────────
##     variable missing complete      n min max  empty n_unique
##       Agency       0   696184 696184   0   5   8970       17
##         Date       0   696184 696184   0   9   8970     2450
##   LawaSiteID       0   696184 696184   0  11   8970      886
##    parameter       0   696184 696184   0   5   8970       10
##       Region       0   696184 696184   0  17   8970       17
##  region.site       0   696184 696184   1  70      0      899
##         Site       0   696184 696184   0  62   8970      899
##       Symbol       0   696184 696184   0   1 633315        3
## 
## ── Variable type:Date ────────────────────────────────────────────────────────────────────────────
##  variable missing complete      n        min        max     median
##   ba_date    8970   687214 696184 2008-01-03 2018-07-17 2013-10-09
##  n_unique
##      2449
## 
## ── Variable type:numeric ─────────────────────────────────────────────────────────────────────────
##  variable missing complete      n   mean       sd    p0   p25  p50  p75
##  RawValue   72101   624083 696184 132.49 15035.99 -20.7 0.045 0.81 7.19
##     Value    9232   686952 696184 123.78 14335.64 -20.7 0.023 0.56 6.8 
##     p100     hist
##  1.2e+07 ▇▁▁▁▁▁▁▁
##  1.2e+07 ▇▁▁▁▁▁▁▁

6 Runtime

Report generated using knitr in RStudio with R version 3.5.2 (2018-12-20) running on x86_64-apple-darwin15.6.0 (Darwin Kernel Version 17.7.0: Wed Apr 24 21:17:24 PDT 2019; root:xnu-4570.71.45~1/RELEASE_X86_64).

t <- proc.time() - startTime

elapsed <- t[[3]]

Analysis completed in 52.625 seconds ( 0.88 minutes).

R packages used:

  • data.table - (???)
  • forcats - (???)
  • ggplot2 - (???)
  • here - (???)
  • kableExtra - (???)
  • lubridate - (???)
  • skimr - (???)
  • viridis - (???)

7 References