-
Notifications
You must be signed in to change notification settings - Fork 4
/
NEWS
1527 lines (1125 loc) · 38.6 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
NEWS
================
<[email protected]> and <[email protected]>
<!-- NEWS.md is generated from NEWS.Rmd. Please edit that file -->
#> Last Update: 2024-07-26 09:35:21.683005
# baytrends 2.0.12
- release 2024-07-27
- refactor: Bump version number for submittal to CRAN
# baytrends 2.0.11.9004
- release 2024-07-27
- refactor: Update CRAN comments
# baytrends 2.0.11.9003
- release 2024-07-26
- docs: Add rhubv2 for testing before posting to CRAN
# baytrends 2.0.11.9002
- refactor: Function impute to pass a dataframe with two columns named
left and right to fitdistrplus::fitdistcens
# baytrends 2.0.11.9001
- refactor: Function gamTestSeason to address logic error with
gamPenaltyCrit
# baytrends 2.0.11
- Release 2024-02-12
- refactor: Bump version for CRAN submittal
# baytrends 2.0.10.9001
- Release 2024-02-12
- fix: Bad URL in NEWS (1.0.4.9011) Remove, no longer valid
# baytrends 2.0.10
- Release 2024-02-09
- refactor: Bump version for CRAN submittal
# baytrends 2.0.9.9003
- Release 2024-02-07
- refactor: Update GitHub Actions to v2;
usethis::use_github_actions(“foo”)
# baytrends 2.0.9.9002
- Release 2024-02-07
- docs: Update package documentation, Issue \#80
- refactor: Update analysisOrganizeData for time periods, 12/13 to 14/15
# baytrends 2.0.9.9001
- Release 2024-02-07
- docs: Add URL to DESCRIPTION per Pull Request, PR \#81
# baytrends 2.0.9
- Release 2023-04-04
- gamTest.R: updated \|\| to \| to remove coercion to ‘logical(1)’
warning
# baytrends 2.0.8.9001
- Release 2022-05-05
- docs: Remove logo
# baytrends 2.0.8
- Release 2022-05-05
- refactor: Update for CRAN submittal
- Fixed error associated with update to R 4.2
# baytrends 2.0.7.9003
- Release 2022-05-05
- style: Truncate long lines to 80 characters (not all done)
- baytrends.R
- checkRange.R
- chkParameter.R
- closeOut.R
- data.R
- detrended.flow.R
- detrended.salinity.R
- expectMaxFunctions.R
- findFile.R
- flwAveragePred.R
- gamDiff.R
- gdata_nobs.R
- getUSGSflow.R
- imputeCensored.R
- unSurv.R
- zzz.R
- style: Update files with incomplete final lines
- refactor: Modify if(class()) to if(typeof()) when checking against
string
- createResiduals.R
- docs: Add logo
# baytrends 2.0.7.9002
- Release 2022-05-02
- updated is.na(…) usage: analysisOrganizeData, gamTest, gamTestSeason ,
loadData, selectData, unSurv
# baytrends 2.0.7.9001
- Release 2022-05-01
- analysisOrganizeData: updated gamDiffPeriods
# baytrends 2.0.7
- Release 2022-02-25
- refactor: Update for CRAN resubmission
# baytrends 2.0.6.9001
- Release 2022-02-25
- refactor: Update for CRAN resubmission
- Modify if(class) for text comparison in createResiduals.R
- Failed check for r-devel-linux-x86_64-debian-gcc,
r-devel-windows-x86_64
- Trim to 80 character lines
# baytrends 2.0.6
- Release 2022-02-24
- refactor: Update for CRAN resubmission
# baytrends 2.0.5.8004
- Release 2022-02-24
- docs: Move unused packages to suggests in DESCRIPTION
- imputeTS and nlme
- docs: Remove bad URL in NEWS
- 1.0.2.9012, URL no longer exists
# baytrends 2.0.5.8003
- Release 2022-02-23
- refactor: Update analysisOrganizeData time periods, Issue \#72
# baytrends 2.0.5.8002
- Release 2022-02-23
- refactor: Set default gam years back to 2 from 3, Issue \#70
- analysisOrganizeData.R
- This undoes the edit in Issue \#59
# baytrends 2.0.5.8001
- Release 2022-02-23
- docs: Move packages from suggests to imports, Issue \#71
- Force required packages to install by default
- docs: Update README with example for install package to force
dependencies
# baytrends 2.0.5
- Release 2021-05-14
- refactor: Update for CRAN resubmission, Issue \#64
# baytrends 2.0.4.9003
- Release 2021-05-14
- refactor: Merge pull request to main branch with updates in 2.0.4.9002
, Issue \#64
- refactor: Update README install example
# baytrends 2.0.4.9002
- Release 2021-05-12
- fix: Updated layer aggregration to use dplyr::bind_rows to combine
data frames with Surv objects
- refactor: Updated default gamDiffPeriods to 1999-2001 and 2011-2013
- refactor: Updated calculation of fraction of observations that are
censored
- refactor: Updated layer aggregation to allow for computing medians in
addition to mean
# baytrends 2.0.4
- Release 2021-04-19
- refactor: Update for CRAN resubmission, Issue \#61
- Fix lifecycle badge URL
# baytrends 2.0.3
- Release 2021-04-16
- refactor: Update for CRAN resubmission, Issue \#61
# baytrends 2.0.2.9003
- Release 2021-04-16
- refactor: DESCRIPTION
- Add markdown to Suggests
# baytrends 2.0.2.9002
- Release 2021-04-16
- docs: README
- Install text update
- Removed date field
- Trim to 80 characters
- refactor: DESCRIPTION
- Move lubridate from depends to imports
- Remove XML (not used), 2.0.0.8005
- Add BugReports
- refactor: Fix misspellings detected with devtools::spell_check()
- DESCRIPTION
- analysisOrganizeData
- refactor: Remove unneeded vignette “test”
- refactor: Use ‘\<-’ instead of ‘=’ for assignment
- detrended.flow
- detrended.salinity
- findFile
- gamPlotDisp
- gamPlotDispSeason
- gamTest
- gamTestSeason
- imputeCensored
- layerAggregation
- loadData
- makeSurvDF
- seasAdjFlow2
- selectData
- smwrBase_baseDay
- smwrBase_eventProcessing
- unSurv
- zzz
- refactor: Omit trailing semicolons
- analysisOrganizeData
- detrendedFlow
- detrendedSalinity
- refactor: findFile
- Use on.exit() after setwd() to ensure it returns the previous value
- refactor: Set up GitHub Actions
- check
- pkgdown
- Remove ‘docs’ folder
# baytrends 2.0.2.9001
- Release 2021-04-15
- Change default number of years used in computing differences from 2
years to 3 years. New parameter analySpec\$gamDiffNumChgYrs set to 3
years, but can be set back to 2 years (or any number of years based on
user input).
# baytrends 2.0.2
- Release 2020-11-23
- Submit to CRAN
# baytrends 2.0.1.9001
- Release 2020-11-23
- Add .git to .Rbuildignore
- Remove one RDA from vignette folder (too large).
# baytrends 2.0.1
- Release 2020-11-20
- Submit to CRAN
# baytrends 2.0.0.9002
- Release 2020-11-20
- Edit DESCRIPTION for CRAN.
- Tweak Detrending_Flow_and_Salinity_Data vignette for build error.
# baytrends 2.0.0.9001
- Release 2020-11-19
- DESCRIPTION
- Remove Disclaimer.
- Add journal reference.
- baytrends package help.
- Added Disclaimer text.
# baytrends 2.0.0
- Release 2020-11-18
- Ready for CRAN submittal
# baytrends 2.0.0.8005
- Release 2020-11-13
- Run rhub::check_for_linux
- DESCRIPTION, Remove packages not being used.
- methods
- XML
- zCompositions
- DESCRIPTION, Move package from Import to Suggests (vignette only)
- dplyr
- Processing_Censored_Data.R
- remove library(dplyr)
- Add dplyr:: to bind_rows
# baytrends 2.0.0.8004
- Release 2020-11-12
- Run rhub::check_for_linux
- Update png to PNG in vignette for compatibility with Linux.
- detrended.flow.R
- baytrends::nobs to nobs
- Rebuild pkgdown site.
- DESCRIPTION
- Remove gdata from Imports.
# baytrends 2.0.0.8003
- Release 2020-11-09
- Run rhub::check_for_cran
- Update date in DESCRIPTION
- Add tests for impute function.
# baytrends 2.0.0.8002
- Release 2020-11-09
- Import nobs from gdata as a new function.
- gdata in danger of being archived. No meaningful response from
maintainer after 6 weeks.
- Imported ‘as is’ with a note in the help section.
- detrended.flow
- Modified to use baytrends::nobs instead of gdata::nobs.
- Add tests for nobs function.
# baytrends 2.0.0.8001
- Release 2020-08-25
- Test and check for CRAN.
- NEWS
- Two URLs from http to https
- DESCRIPTION
- Maintainer, add middle initial to match Authors
# baytrends 2.0.0
- Beta Release 2020-08-05
# baytrends 1.2.1.8020
- Release 2020-08-04
- vignette & documentation cleanup
# baytrends 1.2.1.8019
- Release 2020-07-29
- added vignette for processing censored data
# baytrends 1.2.1.8018
- Release 2020-07-22
- updated documentation for versions \>v1.2.1.8015 code
# baytrends 1.2.1.8017
- Release 2020-07-22
- Add tests
- unSurv
- unSurvDF
- makeSurvDF
- unSurv.R
- Tweak example text to match examples in unSurvDF and makeSurvDF.
# baytrends 1.2.1.8016
- Release 2020-07-22
- Allow user values for column names / suffixes in makeSurvDF; Issue
\#49
- Update example in unSurv and unSurvDF to match example in makeSurvDF;
Issue \#50
# baytrends 1.2.1.8015
- Release 2020-07-20
- Allow user values for column names / suffixes in unSurv and unSurvDF;
Issue \#50
# baytrends 1.2.1.8014
- Release 2020-07-20
- Expose layeraggregation as a function available to the user; Issue
\#47
- Update reference in analysisOrganizeData
# baytrends 1.2.1.8013
- Release 2020-07-14
- added dplyr to DESCRIPTION \> Imports
- move survival & mgcv to DESCRIPTION \> Imports
# baytrends 1.2.1.8012
- Release 2020-07-07
- added makeSurvDF functions
# baytrends 1.2.1.8011
- Release 2020-07-06
- added unSurvDF and imputeDF functions
# baytrends 1.2.1.8010
- Release 2020-07-02
- updated .layerAggregation for Survival objects
# baytrends 1.2.1.8009
- Release 2020-07-02
- Updates after “check”; Issue \#46
- Add survival::foo for new functions from survival package.
- selectData.R
- imputeCensored.R
- Add importFrom survival Suv to selectData.R
# baytrends 1.2.1.8008
- Release 2020-07-01
- remove deprecated html files and data sets
# baytrends 1.2.1.8007
- Release 2020-06-30
- createResiduals: corrected error for non-Surv objects
# baytrends 1.2.1.8006
- Release 2020-06-30
- remove depracated qw functions
# baytrends 1.2.1.8005
- Release 2020-06-29
- remove qw vignette
# baytrends 1.2.1.8004
- Release 2020-06-23
- updated to gamTestSeason to process Surv and non-Surv objects
# baytrends 1.2.1.8003
- Release 2020-06-23
- updated to gamTest to process non-Surv objects
# baytrends 1.2.1.8002
- Release 2020-05-22
- updated gamTest (and related support functions) to run using Surv
fields
# baytrends 1.2.1.8001
- Release 2020-03-31
- migrated demonstration data set, dataCensored, from qw to Surv fields
for censored data
# baytrends 1.2.1
- Release 2020-03-31
- Wrap up new version number for CRAN submittal.
# baytrends 1.2.0.9001
- Release 2020-03-31
- Additional changes for CRAN.
- Bad URL, comment out.
- smwrQW_x_dlimit.R
- Example run time \> 10 seconds, add ‘dontrun’.
- gamPlotDispSeason
- gamTestSeason
- gamTest
- Changes for Linux build.
- data_censored_text.csv and data_censored_test.rda
- Remove from examples with ‘dontrun’.
- qw.export.R
- qw.import.R
- Leave in vignette_qw.R
# baytrends 1.2
- Release 2020-03-30
- Final version for resubmittal to CRAN.
# baytrends 1.1.0.9020
- Release 2020-03-30
- Recheck master branch.
- Update pdfs in “doc” folder.
- Replace ‘baytrends_overview.pdf’..
- Add ‘statgam_and_statchng_output_fields.pdf’
- NEWS
- Not showing. Ensure NEWS.md available.
- Replace double-quotes with single-quotes.
# baytrends 1.1.0.9019
- Release 2020-03-29
- Merge Dev_04 branch with master branch.
# baytrends 1.1.0.9018
- Release 2020-03-29
- Updates for CRAN in Dev_04 branch.
# baytrends 1.1.0.9017
- Release 2020-03-23
- Updates for CRAN prior to re-submittal to CRAN.
# baytrends 1.1.0.9016
- Release 2020-03-20
- Rebuild package after merging with dev02 branch to ensure all
documentation is copacetic.
# baytrends 1.1.0.9015
- Release 2020-03-09
- Check with R version 3.6.2 (released 2020-02-29).
- Add links to gamTest documentation. Issue \#40.
- Add ReadMe.RMD and update it.
- Updated badges from overall CRAN to individual flavors.
- Windows, OSX, and Linux.
- Update saveDF documentation.
- IsLike updates to structure. Issue \#39.
- Checked with rhub for Linux dev versions of R.
- Update pkgdown website.
# baytrends 1.1.0.9014
- Release 2020-01-28
- Add missing functions from smwrGraphs so all examples will run without
any errors.
- Keyword internal so won’t show in help.
- smwrGraphs_colors.R
- smwrGraphs_logPretty.R
- smwrGraphs_setAxis.R
- Remove references to smwrGraphs package vignette in help files.
- Several function had in the ‘dont run’ section of their examples.
- smwrGraphs_addCaption.R
- smwrGraphs_colorPlot.R
- smwrGraphs_month.USGS.R
- smwrGraphs_refLine.R
- smwrGraphs_setColor.R
- smwrGraphs_setPage.R
- smwrGraphs_timePlot.R
- smwrGraphs_xyPlot.R
- rdname block error.
- smwrBase_isLike.R
- Update examples for errors
- findFile.R
- Add data to data folder and data.R from smwr\* packages.
- pcodeColData
- Q05078470
- QW05078470
- QWstacked
- Comment out examples.
- smwrBase_importRDB.R
- swmrQW_x_readNWQLdl.R
- DESCRIPTION
- R \>= 3.5.0 based on Check warning.
# baytrends 1.1.0.9013
- Release 2020-01-20
- Updates to pass testing with development version of R for Linux.
- \_saveDF to \_save_df
- saveDF.R
- dataCensored.test.rd to data_censored_test.rd
- vignette_qw.Rmd
- vignette_qw.r
- qw.import.Rd
- qw.imoprt.R
- dataCensored_TEST.csv to data_censored_test.csv
- vignette_qw.Rmd
- vignette_qw.r
- qw.export.R
- qw.import.R
- pkgdown
- Update files.
- Add URL to GitHub repo header.
# baytrends 1.1.0.9012
- Release 2019-11-06
- Added pkgdown website.
# baytrends 1.1.0.9011
- Release 2019-12-21
- Function createResiduals modified to return data frame, df, rather
than just a vector
# baytrends 1.1.0.9004
- Release 2019-06-25
- Minor punch list issues from v\*.9003 and .9002. Add option
analySpec\$showGamNumOnPlot to add gam \# onto plot
# baytrends 1.1.0.9003
- Release 2019-06-06
- Improved error trapping related to required station and parameter list
fields. Added detrended salinity, detrended flow and method list
warnings.
# baytrends 1.1.0.9002
- Release 2019-05-31
- Added functions gamTestSeasonal and gamPlotDispSeasonal to compute and
only display a seasonal mean for a single date or for a date range.
# baytrends 1.1.0
- Release 2019-03-14
- Release update for CRAN
- As minor upgrade.
# baytrends 1.0.8
- Release 2019-03-14
- Release update for CRAN
- As bug fix.
# baytrends 1.0.7.9011
- Release 2019-03-14
- Fix date in DESCRIPTION.
- Add library creation notebook to .Rbuildignore
# baytrends 1.0.7.9010
- Release 2019-03-13
- Updates based on ‘check’ to prepare for submittal to CRAN.
- Added some oxygen tags
- Added .install_extras to vignettes folder for additional PDF docs
- ‘dot’ prefix functions with keyword internal
- Removed example for hidden function .createResiduals
- .findFile examples marked as do not run.
# baytrends 1.0.7.9009
- Release 2019-03-11
- Update from devtools::session_info to sessioninfo::session_info. Issue
\#31.
- closeOut function.
- Rebuild vignettes.
- Names not showing in help file.
# baytrends 1.0.7.9008
- Release 2019-03-05
- seasMeandoy.xyz removed from prediction data set
# baytrends 1.0.7.9007
- Release 2018-12-28
- Based on date range entered into analySpec_gamLegend_legend for
analySpec_gamLegend_descrip equal to ‘seasMean’, compute predicted
values based on doy’s spread across above date range. seasMeandoy.xyz
maintained in prediction data set along with seasMeanMin,
seasMeanMean, and seasMeanMax.
# baytrends 1.0.7.9006
- Release 2018-08-08
- created loadModelsResid function to include models for calculating
residuals (i.e., primarily gam4 and gam5 without cyear)
- updated createResidual to save plots to file
# baytrends 1.0.7.9005
- Release 2018-08-03
- updated createResidual to skip over cases (i.e., specific stations)
where there were insufficient data to run specified gam formula
# baytrends 1.0.7.9004
- Release 2018-08-01
- added loadModels function to facilitate gam formula specification;
updated createResidual to include a ‘fall back’ option to use gam2 or
gam4 if user had selected gam3 or gam5 and the model did not run
(expected due to intervention)
# baytrends 1.0.7.9003
- Release 2018-07-30
- function deSeasonalize renamed to createResiduals; extended to allow
for any gam0-gam5 model
# baytrends 1.0.7.9002
- Release 2018-07-18
- update function deSeasonalize to allow for s(doy) and perform basic
testing
# baytrends 1.0.7.9001
- Release 2018-07-13
- added function deSeasonalize
# baytrends 1.0.7
- Release 2018-07-12
- Resubmit to CRAN
# baytrends 1.0.6.9001
- Release 2018-07-12
- DESCRIPTION
- Additional_repositories to URL
- Update and lengthen Description.
# baytrends 1.0.6
- Release 2018-07-09
- # Resubmit to CRAN
# baytrends 1.0.5.9002
- Release 2018-07-11
- Update ANOVA table to allow for no parametric terms in gam formula
# baytrends 1.0.5.9001
- Release 2018-07-09
- Fix CRAN submission NOTES
- Restructure my names with middle initial as maintainer.
- donotrun on examples for detrended.flow and detrended.salinity
# baytrends 1.0.5
- Released 2018-07-06
- Create ‘release’ on GitHub.
- Submit to CRAN
# baytrends 1.0.4.9012
- Released 2018-07-06
- selectData
- Remove example.
- CHECK
- 0 errors \| 0 warnings \| 0 notes
# baytrends 1.0.4.9011
- Released 2018-07-06
- DESCRIPTION
- Change ‘maintainer’ from Jon Harcum to Erik Leppo so Erik can submit
to CRAN.
- Change ‘additional repositories’ to GitHub. Was owi USGS gov slash
R.
- .Rbuildignore
- Add cran-comments.md
- qw.import; example qw.names
- Rename variables without ‘f’; po4, no23, and nh4
- Remove variables pp and pn.
- detrended.flow
- Fix CHECK NOTE for figNum.
- Added ‘figNum’ to globalVariables in zzz.R
- Assigned figNum as NULL before assign as zero.
- dataCensored
- Fix CHECK WARNING
- selectData
- Example not working. Mark as ‘donotrun’ while troubleshoot.
# baytrends 1.0.4.9010
- Released 2018-07-05
- Add .github to .Rbuildignore to avoid CHECK note.
- Added dates to NEWS releases.
- Update data.R for dataCensored.
# baytrends 1.0.4.9009
- Released 2018-07-03
- dataCensored: aligned data set with companion journal article
# baytrends 1.0.4.9008
- Released 2018-07-03
- dataCensored: aligned data set with companion journal article
# baytrends 1.0.4.9007
- Released 2018-07-02
- selectData: improved error trap for lack of data
# baytrends 1.0.4.9006
- Released 2018-6-12
- updated documentation
# baytrends 1.0.4.9005
- Released 2018-6-12
- Added baytrends version to to iSpec and improved readme file
# baytrends 1.0.4.9004
- Released 2018-6-12
- Added list of seasonal models to iSpec
# baytrends 1.0.4.9003
- Released 2018-6-12
- Updated impute function to include maximum likelihood estimation
assuming normal and lognormal distribution
# baytrends 1.0.4.9002
- Released 2018-6-12
- Updated NEWS and DESCRIPTION.
- Updated online documentation for analysisOrganizeData function
- pass parameterList from gamTest to .chkParameter
# baytrends 1.0.4.9001
- Released 2018-6-12
- Updated NEWS and DESCRIPTION.
- Updated online documentation for analysisOrganizeData function
- pass parameterList from gamTest to .chkParameter
# baytrends 1.0.4
- Released 2018-05-14
- Created release 1.0.4 on GitHub
# baytrends 1.0.3.9021
- Released 2018-05-14
- Updated NEWS and DESCRIPTION.
- Check results: no errors, warnings, or notes.
# baytrends 1.0.3.9020
- Released 2018-05-13
- GitHub commit; Merge pull request \#16 from tetratech/12Mar2018
# baytrends 1.0.3.9019
- Released 2018-05-13
- GitHub commit; v1.0.3.9011
- missed layerLukup -\> layerList naming convention
# baytrends 1.0.3.9019
- Released 2018-05-12
- GitHub commit; Merge pull request \#15 from tetratech/12Mar2018
# baytrends 1.0.3.9018
- Released 2018-05-12
- GitHub commit; v1.0.4
# baytrends 1.0.3.9017
- Released 2018-05-12
- GitHub commit; v1.0.4
# baytrends 1.0.3.9016
- Released 2018-05-12
- GitHub commit; v1.0.4
- Added passing of salinity.detrended and flow.detrended to gamTest
- Added passing stationMasterList, parameterList, and layerLukup to
analyzeOrganizeData
- Corrected getUSGSflow function to accommodate missing values at
beginning/ending of record
- Moved package `plyr` from Suggests to Imports in DESCRIPTION
- Remaining Check issue with no visible binding for global variable;
salinity.detrended
- .gamPlotCalc
- .mergeSalinity
- gamDiff
# baytrends 1.0.3.9015
- Released 2018-05-12
- GitHub commit; Merge pull request \#14 from tetratech/detrended_files
- Detrended files
# baytrends 1.0.3.9014
- Released 2018-05-12
- GitHub commit; v1.0.3.9009
- Set data frames for station and layer list to not use factors
# baytrends 1.0.3.9013
- Released 2018-05-12
- GitHub commit; v1.0.3.9009
- Further clean up for handling detrended files.
# baytrends 1.0.3.9012
- Released 2018-05-12
- GitHub commit; v1.0.3.9009
- Migrate gamDiff for detrended flow and salinity.
# baytrends 1.0.3.9011
- Released 2018-05-12
- GitHub commit; v1.0.3.9008
- analysisOrganizeData: add parameterList, stationMasterList, and
layerLukup to argument list. If not passed then default baytrend data
frames are used. added parmRecensor to depVarList, added usgsGageName
to stationList
- selectData: migrated from using stationMasterList, parameterList to
stationList and depVarList.
- gamTest: added salinity.detrended to argument list, updated
conditionals used to skip flw_sal models, embedded explicit passing of
flow.detrended and salinity.detrended to mergeFlow and mergeSalinity.
# baytrends 1.0.3.9010
- Released 2018-05-12
- GitHub commit; documentation typographical error correction
# baytrends 1.0.3.9009
- Released 2018-05-11
- GitHub commit; Merge pull request \#11 from
tetratech/fix_flow_retrieval
# baytrends 1.0.3.9008
- Released 2018-05-11
- GitHub commit; v1.0.3.9005
- updated getUSGSflow function to fill in missing flow values at the
beginning and ending of time series.
# baytrends 1.0.3.9007
- Released 2018-05-11
- GitHub commit; Merge pull request \#10 from
tetratech/fix_flow_retrieval
# baytrends 1.0.3.9006
- Released 2018-05-011
- GitHub commit; v1.0.3.9005
- updated getUSGSflow function to fill in missing flow values at the
beginning and ending of time series.
# baytrends 1.0.3.9005
- Released 2018-05-09
- GitHub commit; Merge pull request \#8 from
tetratech/harcum_development
# baytrends 1.0.3.9004
- Released 2018-05-09
- GitHub commit; v1.0.3.9004
# baytrends 1.0.3.9003
- Released 2018-05-07
- GitHub commit; v1.0.3.9003
- Last fix for Check. Ready for submittal to CRAN. Issue \#1
# baytrends 1.0.3.9002
- Released 2018-05-07
- GitHub commit; v1.0.3.9002
- Verified merge of DEV branch into Master.
- Fixed an issue with plyr and
- Re-ran Check to get ready for CRAN submittal (Issue \#1 ).
# baytrends 1.0.3.9001
- Released 2018-05-07
- Merge Development Branch (v.0.2.9012 DEV) with master branch.
- Resolve conflicts:
- DESCRIPTION
- NAMESPACE
- NEWS (left alone as will rebuild)
- NEWS.rmd
- mergeFlow.R
- baytrends_LibraryCration.nb.html (left alone as will rebuild)
# baytrends 1.0.2.9012
development branch \* Released - 2018-05-03 \* branch of master based on
v1.0.2 (release) \* Clean up from check for CRAN \* Note; NEWS.rmd. Add