-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathNEWS
More file actions
3006 lines (2137 loc) · 84 KB
/
Copy pathNEWS
File metadata and controls
3006 lines (2137 loc) · 84 KB
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
================
<Erik.Leppo@tetratech.com>
<!-- NEWS.md is generated from NEWS.Rmd. Please edit that file -->
#> Last Update: 2026-08-27 08:29:22.052291
# Version History
## Changes in version 1.3.2.9003 (2026-08-27)
- refactor: Update MetricNames.xlsx
- Comm_Metric and Count
- Bugs_LargeRare to “non-bugs” for non-bug communities
## Changes in version 1.3.2.9002 (2026-08-12)
- refactor: Add new benthic metrics, Issue \#153
- pi_COEPT and pt_COEPT
- MetricNames.xlsx
- metric_values.R
## Changes in version 1.3.2.9001 (2026-08-10)
- tests: Write test for duplicate metrics in MetricNames.xlsx
- fix: Remove duplicate metrics in MetricNames.xlsx
- bugs
- nt_Coleo_BCG_att234b4m
- nt_Ephem_BCG_att234b4m
- nt_Odon_BCG_att234b4m
- nt_Trich_BCG_att234b4m
- fish
- nt_detritivore
- nt_omnivore
- pt_detritivore
- pt_omnivore
- tests: Write test for duplicate metrics in metric_values.R
- fix: Remove duplicate metrics in metric_values.R
- fish
- nt_detritivore
- nt_omnivore
- pt_detritivore
- pt_omnivore
- refactor: Additional algal metrics, Issue \#151
- MetricNames.xlsx
- metric_values.R
- style: Update section outlining to match between communities for data
munging helper columns, Issue \#152
- refactor: Update data munging for consistency between communities in
metric.values, Issue \#152
- Fish
- Add remove non-target section, not code as not required
- Algae
- Add logical \_ Add white space
- Coral
- Add remove non-target section, not code as not required
- Add white space section but no columns modified
- refactor: Add new columns to example algal data, Issue \#151
## Changes in version 1.3.2 (2026-08-04)
- docs: Bump version for resubmittal to CRAN
- writexl fix, Issue \#149
## Changes in version 1.3.1.9007 (2026-08-04)
- refactor: Update metvalgrpxl(), Issue \#149
- Change order of assignment to agree with suggested change
## Changes in version 1.3.1.9006 (2026-08-04)
- docs: Remove URL in NEWS due to winbuilder (old) failure
## Changes in version 1.3.1.9005 (2026-08-04)
- fix: Update README badges
- CRAN version
- downloads
## Changes in version 1.3.1.9004 (2026-08-04)
- fix: Update metvalgrpxl() for breaking change in writexl 2.0.0, Issue
\#149
- refactor: Update all formula references in metvalgrpxl() to A1
- refactor: Add missing global bindings to qc_taxa_phylo()
- docs: Update DESCRIPTION for R \>= 4.1.0
- Native pipe and … in functions
## Changes in version 1.3.1.9003 (2026-08-04)
- docs: Remove duplicate CodeCov badge in README
## Changes in version 1.3.1.9002 (2026-08-03)
- refactor: Update code coverage YAML and badge in README
## Changes in version 1.3.1.9001 (2026-07-29)
- refactor: Update qc_taxa_phylo
- Update help text
- Add character length check
## Changes in version 1.3.1 (2026-07-22)
- refactor: Modify examples in qc_taxa_names_proof to pass CRAN check,
Issue \#147
## Changes in version 1.3 (2026-07-22)
- docs: Bump version for CRAN submittal
## Changes in version 1.2.4.9036 (2026-07-22)
- refactor: CRAN prep
- global bindings in functions
- qc_taxa_values_logical
- qc_taxa_phylo
- fix: qc_taxa_values_numeric
- Modify qc conditions for no inputs (were flipped)
- Update examples to include plots
## Changes in version 1.2.4.9035 (2026-07-21)
- refactor: Update data_mmi_dev_small for missing columns
- tests: Turn off metric.stats2() as not working when test or check but
is ok in console
- refactor: CRAN prep
- global bindings in functions
- metric.values
- qc_taxa_names_proof
- qc_taxa_phylo
- qc_taxa_values_logical
## Changes in version 1.2.4.9034 (2026-07-21)
- fix: Update Algae metrics to properly use required columns and convert
character columns to upper case
- tests: Update metric_stats test for info columns
## Changes in version 1.2.4.9033 (2026-07-20)
- refactor: Update errors in vignettes
- docs: Add stringdist to DESCRIPTION from qc_taxa_names_proof() \#
refactor: Comment out header in Examples for qc_taxa_values_char
- refactor: Update parameters for consistency
- qc_taxa_values_character
- qc_taxa_values_logical
- qc_taxa_values_numeric
- tests: Update tests for errors
## Changes in version 1.2.4.9032 (2026-07-20)
- refactor: Update deprecation of qc_taxa()
- Was not pointing correctly to qc_taxa_names_match()
- refactor: Update qc_taxa_names_match() to handle non-ASCII, Issue
\#141
- Add stringr to DESCRIPTION
## Changes in version 1.2.4.9031 (2026-07-20)
- refactor: Update metric.values for Algae for all values of POLL_TOL as
NA, Issue \#145
- tests: Add test for metric.values for Algae for all value of POLL_TOL
as NA, Issue \#145
## Changes in version 1.2.4.9030 (2026-07-20)
- refactor: Update algae example data, data_diatom_mmi_dev
- docs: Update algae example data help file, data_diatom_mmi_dev
- tests: Remove extra column additions from algae tests
## Changes in version 1.2.4.9029 (2026-07-17)
- refactor: Add new algae metrics, Issue \#144
- fix: Add taxaid_dni to algae metrics
- tests: Update algae tests for missing columns in example data
## Changes in version 1.2.4.9028 (2026-07-07)
- refactor: Add metric for BCGcalc (Boise)
- pi_dom01_BCG_att456t
- pi_dom02_BCG_att456t
## Changes in version 1.2.4.9027 (2026-07-07)
- refactor: Additional metrics to metric_values and MetricNames.xlsx
- pi_NonInsTrombJuga_BCG_att456m6t
- pi_dom01_BCG_att456m6t
- pi_dom02_BCG_att456m6t
## Changes in version 1.2.4.9026 (2026-07-01)
- fix: Update pi_COEPT_BCG_att1i234b4m
- Use BCG_ATTR2 for 4b and 4m
## Changes in version 1.2.4.9025 (2026-06-09)
- refactor: New metric for ORWA Flags, pi_dom02_BCG_att456
## Changes in version 1.2.4.9024 (2026-06-04)
- refactor: Add nord_EPT to MetricNames.xlsx
## Changes in version 1.2.4.9023 (2026-06-04)
- refactor: Add nord_EPT to metric.values
## Changes in version 1.2.4.9022 (2026-06-02)
- style: Updates per good practice package
- Replace stray “=” with “\<-”
- Long code lines
- refactor: Update help text for qc functions
## Changes in version 1.2.4.9021 (2026-05-26)
- data: Update data_diatom_mmi_dev columns for new metrics, Issue \#142
- Mertens, 7 new categorical columns
## Changes in version 1.2.4.9020 (2026-05-22)
- refactor: Add metrics to metric.values and MetricNames.xlsx, Issue
\#142
- Algae, BCG versions of bug BCG, n = 86
## Changes in version 1.2.4.9019 (2026-05-22)
- style: Replace pounds with dashes for outline in metric.values
- refactor: Add metrics to metric.values and MetricNames.xlsx, Issue
\#142
- Benthos, n = 7
## Changes in version 1.2.4.9018 (2026-05-21)
- fix: Update metric.values pi_dom01_BCG_att456t
- 6t wasn’t being captured
## Changes in version 1.2.4.9017 (2026-05-19)
- fix: Rename metric n_ac_wmf to n_ac_mwf
- MetricNames.xlsx
- metric.values
## Changes in version 1.2.4.9016 (2026-05-18)
- refactor: Additional metrics, Issue \#140
- fix: Reconcile differences between Metric.Names.xlsx and metric.calc()
- Add metrics to both
- data: Update PacNW and MBSS benthos datasets for area metrics
## Changes in version 1.2.4.9015 (2026-05-18)
- refactor: Replace migrittr pipe with native pipe, Issue \#130
- Tests
## Changes in version 1.2.4.9014 (2026-05-18)
- refactor: Additional metrics, Issue \#140
- refactor: Update metricnames.xlsx and metricscoring.xlsx for
missing/extra values
## Changes in version 1.2.4.9013 (2026-05-11)
- refactor: Rename qc_taxa_match_official to qc_taxa_names_match
- feature: Add qc_taxa_names_proof function
- Check for spelling issues
- feature: Add qc_taxa_phylo for checking master taxa list names
- refactor: Change names from distinct to parent in
qc_taxa_phylo\$unique_parent output
- data: Create example final id issues dataset
- docs: Document finalid_issues data
- fix: Fix metric x_Obs_CatoRhin in metric.values, Issue \#138
## Changes in version 1.2.4.9012 (2026-03-18)
- feature: Add qc_taxa_values_tolval function
## Changes in version 1.2.4.9011 (2026-03-18)
- refactor: Add default column name to qc_taxa_values_ffg
- feature: Add qc_taxa_values_habit function
## Changes in version 1.2.4.9010 (2026-03-18)
- feature: Add qc_taxa_values_ffg function
## Changes in version 1.2.4.9009 (2026-03-18)
- deprecate: Change qc_taxa to qc_taxa_match_official
- Will be removed in a future version
- refactor: Add qc_taxa_match_official and update with new name
## Changes in version 1.2.4.9008 (2026-03-18)
- test: Add test for metric.values for collapsing, bugs and fish, Issue
\#131
## Changes in version 1.2.4.9007 (2026-03-05)
- refactor: Add new fish metrics
## Changes in version 1.2.4.9006 (2026-01-12)
- fix: Update dominance metrics (fish and bugs), Issue \#131
- Dom01 used max original data not dom dataset
- Other dom numbers unaffected
## Changes in version 1.2.4.9005 (2025-12-26)
- docs: Update README, Issue \#127
- Citation
- Badges, add
- Project status
- CRAN release
- CRAN downloads
- Badges, remove
- GitHub release
- GitHub downloads
- docs: Add help file for package, Issue \#128
## Changes in version 1.2.4.9004 (2025-12-26)
- refactor: Add new fish ageclass metrics, Issue \#129
- tests: Update fish tests with new column, ageclass
## Changes in version 1.2.4.9003 (2025-12-15)
- refactor: Update MetricScoring.xlsx for EGLE_2025 (MI)
## Changes in version 1.2.4.9002 (2025-11-03)
- style: Updates to code style, metric.values
- fix: Correct for missing EXCLUDE column to all FALSE, Issue \#126
- Bugs and Fish metrics
- tests: Add tests for metric.values for NA values in EXCLUDE column,
Issues \#126
- Bugs and Fish
- Missing column and any NA values
## Changes in version 1.2.4.9001 (2025-10-17)
- fix: Convert input to dataframe in rarify, Issue \#123
## Changes in version 1.2.4 (2025-10-06)
- refactor: Bump version number for CRAN
## Changes in version 1.2.3.9008 (2025-10-06)
- refactor: Remove or edit examples with errors, warnings, or long run
times
- taxa_translate
- Non-ASCII character in translation file
## Changes in version 1.2.3.9007 (2025-10-06)
- refactor: Remove or edit examples with errors, warnings, or long run
times
- metric.scores
- metric.values
## Changes in version 1.2.3.9006 (2025-10-03)
- fix: Remove non-portable command from example
- rarify
## Changes in version 1.2.3.9005 (2025-10-03)
- fix: Fix typo in example
- rarify
## Changes in version 1.2.3.9004 (2025-10-03)
- refactor: Remove print to console for function defaults
- rarify.R
- MapTaxaObs.R
- markExcluded.R
- fix: Fix typo in example
- markExcluded
## Changes in version 1.2.3.9003 (2025-10-03)
- style: Use commas at end of wrap lines instead of start of next line
- Examples
- assign_indexclass.R
- markExcluded.R
- metric_scores.R
- metric_stats.R
- metric_stats2.R
- metric_values_excel.R
- metric_values.R
- qc_checks.R
- qc_taxa.R
- rarify.R
- taxa_translate.R
- refactor: Remove write example in vignette example
## Changes in version 1.2.3.9002 (2025-09-22)
- docs: Update title and description per CRAN review
- refactor: Uncomment or remove lines of code in examples
- markExcluded
- metric_values_excel
- metric.values
- qc.checks
- refactor: Replace dontrun with donttest in examples
- metric.scores
- metrics.stats
- qc.taxa
- MapTaxaObs
- style: Format function inputs with ending commas and separate lines
for each input
- fix: Remove a write location that wasn’t tempdir from vignette
- refactor: Reduce records and runtime for MapTaxaObs
- fix: Add error condition in qc_taxa for when required field is missing
- fix: Update example for qc_taxa to avoid error with missing column
name
## Changes in version 1.2.3.9001 (2025-09-11)
- refactor: Create smaller data set for data_mmi_dev_small
- refactor: Use smaller data set for metric.stats and metric.stats2
## Changes in version 1.2.3 (2025-09-10)
- docs: Bump version for CRAN submission
## Changes in version 1.2.2.9001 (2025-09-10)
- refactor: Add entire example for metric.stats to don’t run
- Fails (\< 5 seconds) on Debian when submit to CRAN
## Changes in version 1.2.2 (2025-09-10)
- docs: Bump version for CRAN submission
## Changes in version 1.2.1.9001 (2025-09-10)
- refactor: Update example for metric.stats for speed
- Reduce number of rows input rather than reduce the file size
## Changes in version 1.2.1 (2025-09-10)
- docs: Bump version number for submission to CRAN
## Changes in version 1.2.0.9001 (2025-09-10)
- refactor: Reduce size of example file in metric.stats
- Failed time check (\< 5 seconds) for one OS
- docs: Update cran-comments
- docs: Add cran-comments.md to .Rbuildignore
## Changes in version 1.2.0 (2025-09-10)
- docs: Bump version number for submission to CRAN, Issue \#49
- docs: Update README for install from CRAN
## Changes in version 1.1.0.9005 (2025-09-10)
- docs: Update authors in DESCRIPTION, per CRAN check, Issue \#49
- docs: Update URLS in README, per CRAN check, Issue \#49
- docs: Add cran-comments file
## Changes in version 1.1.0.9004 (2025-09-09)
- style: Convert = to \<- in metric_values_excel.R
- docs: Don’t run examples for taxa.translate to avoid issues with
pkgdown
## Changes in version 1.1.0.9003 (2025-09-09)
- docs: Update license file, Issue \#49
- Split files per SO article
- stackoverflow.com/questions/43550479/how-to-satisfy-both-cran-and-github-license-file-naming-requirements
- refactor: Update example data for shorter run times, Issue \#49
- ext/Data_Benthos.xlsx
- docs: Update columns for some datasets in data.R
- docs: Add missing dataset documentation to data.R
- docs: Update a few missing imports and global bindings
- refactor: Modify seq statement in metric.stats per CodeFactor
## Changes in version 1.1.0.9002 (2025-09-09)
- refactor: Remove large file, Issue \#49
## Changes in version 1.1.0.9001 (2025-09-09)
- breaking: Move Shiny app to a different repo, BioMonTools_Shiny
- breaking: Remove run shiny function
- version: Bump minor version number to reflect change in Shiny app
location
## Changes in version 1.0.2.9081 (2025-09-09)
- refactor: Add missing package references to function calls, Issue \#49
- refactor: Add missing global variable bindings, Issue \#49
- assign_IndexClass
- metric.values.bugs
- metric.values.fish
- metric.values.coral
- taxa_translate
- refactor: Change if/then statement for checking class in
metric.values, Issue \#49
## Changes in version 1.0.2.9080 (2025-09-08)
- tests: Update metric.calc, Issue \#113
- PA
- Algae, Issue \#108
- disable until update QC data
- Coral
- Fix syntax of test
- tests: Update taxa_translate, Issue \#113
- tests: Update metric_stats, Issue \#113
- tests: Update metric_names, Issue \#113
- Algae
- fix: Update assign_indexclass, Issue \#113
- Add TYPE for multi and single
- tests: Update assign_indexclass, Issue \#113
- tests: Update taxa_translate, Issue \#113
- tests: Remove coral test from metric.values, Issue \#113
- refactor: Suppress filter warning in metric.scores, Issue \#122
## Changes in version 1.0.2.9079 (2025-09-05)
- fix: Add extra columns to example fish data
- docs: Update documentation for example fish data
- fix: Update examples
- metric.values()
- metric.stats(), Issue \#122
- metric.stats2(), Issue \#122
- refactor: Update group_by .dots statements in metric.values(), Issue
\#84
## Changes in version 1.0.2.9078 (2025-09-05)
- refactor: Update metric.values() for global variables, Issue \#49
## Changes in version 1.0.2.9077 (2025-06-19)
- refactor: Add new metrics for ORWA, Issue \#121
## Changes in version 1.0.2.9076 (2025-06-13)
- refactor: Add new metrics for ORWA, Issue \#120
- refactor: Convert required logical columns to logical in
`metric.values`
- bugs, fish, and coral
- no logical required columns for algae
## Changes in version 1.0.2.9075 (2025-06-12)
- refactor: Add new metrics for GP, Issue \#118
## Changes in version 1.0.2.9074 (2025-06-05)
- refactor: Update MetricScoring.xlsx to fix metric scoring
directionality for MIEGLE
## Changes in version 1.0.2.9073 (2025-04-04)
- refactor: Update Shiny
- Make button enable/disable consistent
- Make results folder cleand up consistent
- Could lead to errors if don’t refresh app between files and
operations
- Make selection box defaults consistent
- Metric Calculation
- Create select boxes
- Modify columns for metric.values() input
## Changes in version 1.0.2.9072 (2025-04-04)
- feature: Added Exclude feature to metric calculation in Shiny
## Changes in version 1.0.2.9071 (2025-02-26)
- refactor: Add parameters to BioMonTools::taxa_translation in Shiny
- trim_ws = TRUE
- match_caps = TRUE
## Changes in version 1.0.2.9070 (2025-02-26)
- refactor: Shiny updates
- Add shinyalerts to Shiny app for taxa translation
- From MNcalc
- disable taxa trans button on startup and enable on upload file
- From MNcalc
## Changes in version 1.0.2.9069 (2025-02-25)
- refactor: Add taxa translation for RMN to Shiny
- docs: Add shinyalert to DESCRIPTION Suggests
## Changes in version 1.0.2.9068 (2025-02-10)
- refactor: Add metrics, bugs
- MS, Issue \#116
- habit and habitat, Issue \#117
## Changes in version 1.0.2.9067 (2024-11-20)
- refactor: Add fish metrics; nt/pi/pt BCG_att4 b/m/2
- MetricNames.xlsx
- metric_values.R
## Changes in version 1.0.2.9066 (2024-11-07)
- refactor: Add fish metric permutations of non-native
- MetricNames.xlsx
- metric_values.R
## Changes in version 1.0.2.9065 (2024-11-06)
- fix: Modify fish metrics BCG_ATTR2 to convert to upper case
- metric_values.R
- fix: Update fish metrics BCG2_att1234b (nt\_, pi\_, and pt\_)
- metric_values.R
## Changes in version 1.0.2.9064 (2024-11-06)
- refactor: Add new fish metric (pi_BCG2_att1234b)
- MetricNames.xlsx
- metric_values.R
## Changes in version 1.0.2.9063 (2024-11-06)
- docs: Update comment about NATIVE in metric.values help
## Changes in version 1.0.2.9062 (2024-11-06)
- refactor: Add new fish metrics (BCG_att4w5); same as bugs
- MetricNames.xlsx
- metric_values.R
- docs: Start to populate values column in MetricNames.xlsx
## Changes in version 1.0.2.9061 (2024-11-05)
- refactor: Update MetricNames.xlsx for test
- New field is mostly blank so imports as logical and causes error
## Changes in version 1.0.2.9060 (2024-11-05)
- refactor: Add new fish metrics (nt\_, pi\_, and pt\_) for invertivore
- MetricNames.xlsx
- metric_values.R
## Changes in version 1.0.2.9059 (2024-11-01)
- refactor: Update search patterns for some fish trophic metrics
- IV
- TC
## Changes in version 1.0.2.9058 (2024-11-01)
- refactor: Add new fish metric for Idaho, trophic invertivore top
carnivore
- metric_values.R
- Add “IV_TC”
- Modify “IV” to check for specific cases
- MetricNames.xlsx
## Changes in version 1.0.2.9057 (2024-10-30)
- refactor: Add new metric for MN, nt_total_ExclSchool
- metric_values.R
- MetricNames.xlsx
## Changes in version 1.0.2.9056 (2024-10-29)
- refactor: Modify code for schooling fish in TYPE for MN metrics
- SCHOOLING to SCH
- refactor: Modify code for brook trout fish in TYPE for MN metrics
- BROOKTROUT to BKT
- docs: Update notes for MN metrics above in MetricNames.xlsx
- docs: Add date to version number in NEWS
- Current entry only
## Changes in version 1.0.2.9055
- docs: Update Excel files for MN_IBI_Fish Index_Class 1
- pi_piscivore_ExclSchool to nt_piscivore
## Changes in version 1.0.2.9054
- refactor: Add new metrics for MN_IBI_Bugs
- nfam_Baetidae
- nt_POETNoBae
- nt_POETfamBae
- docs: Update Excel files for new metrics for MN_IBI_Bugs
- MetricNames
- MetricScoring
## Changes in version 1.0.2.9053
- refactor: Update MetricScoring.xlsx
- MN, pi_TrichNoHydro scoring formula text
## Changes in version 1.0.2.9052
- fix: Update MetricScoring.xlsx
- MN, narratives
## Changes in version 1.0.2.9051
- fix: Update MetricScoring.xlsx (MN)
## Changes in version 1.0.2.9050
- refactor: Update MetricScoring.xlsx
- MN_IBI_Fish and MN_IBI_Bugs, index numeric and narrative
## Changes in version 1.0.2.9049
- style: Clean up new additions to metric_values.R
- Move new metrics for GP to alongside previous GP metrics
- Move munging for new metrics to alongside previous munging for TYPE
## Changes in version 1.0.2.9048
- refactor: Added Great Plains fish metrics (pi_NPL and pi_SALT)
## Changes in version 1.0.2.9047
- refactor: MetricScoring.xlsx change MN IBI classes
- Flip Bugs and Fish for 8/9 and 10/11
## Changes in version 1.0.2.9046
- refactor: Update MN IBI (bugs and fish), Issue \#92
- Drop “modified” narrative
- MetricScoring.xlsx
## Changes in version 1.0.2.9045
- refactor: Update MN Fish and Bug IBI index scoring, Issue \#92
## Changes in version 1.0.2.9044
- refactor: Update MN fish metric ni_m2_notoler to ni_m_notoler, Issue
\#92
- Length (m) not area (m2)
- metric.values.R
- MetricScoring.xlsx
- MetricNames.xlsx
## Changes in version 1.0.2.9043
- refactor: Change MN Bugs Index_Class from 8 and 9 to 10 and 11, Issue
\#92
- MetricScoring.xlsx
## Changes in version 1.0.2.9042
- fix: Update fish metrics brook trout code, Issue \#92
- Change for MN to replace space invalidated code
- Added TYPE_BROOKTROUT to make metric simpler
## Changes in version 1.0.2.9041
- docs: Add “demo only” language to ORWA example data
## Changes in version 1.0.2.9040
- BREAKING: Deprecate sum_n_taxa in `taxa_translate`
- Leave in code so if fix can re-enable
- Doesn’t work all the time with match_caps and non-ascii character
code
## Changes in version 1.0.2.9039
- refactor: Update zeroind scoring for MN Bugs and Fish IBI, Issue \#111
- MetricScoring.xlsx
## Changes in version 1.0.2.9038
- refactor: Update `taxa_translate` columns for unique taxa output
## Changes in version 1.0.2.9037
- refactor: Update match_caps code in `taxa_translate`
## Changes in version 1.0.2.9036
- refactor: Add default value for match_caps in `taxa_translate`
## Changes in version 1.0.2.9035
- refactor: Update MN_Fish_IBI metrics, Issue \#111
- pi_wetland_notoler_ExclSchool to nt_wetland_notoler
- MetricScoring.xlsx
- MetricNames.xlsx
- `metric.values`
## Changes in version 1.0.2.9034
- refactor: Add pi_OligoHiru to `metric.values`
## Changes in version 1.0.2.9033
- refactor: Update MetricScoring.xlsx for MN_Fish_IBI, Issue \#111
## Changes in version 1.0.2.9032
- refactor: Update taxa_translate taxatrax_unique ouput
- Add match with CAPS
## Changes in version 1.0.2.9031
- fix: Add TolVal2 as required field for fish metrics in `metric.values`
## Changes in version 1.0.2.9030
- test: Add taxa.translate triws test
- Add white space (leading, trailing, both) and internal nbsp to test
data
## Changes in version 1.0.2.9029
- feature: Update taxa.translate trimws feature to replace internal
## Changes in version 1.0.2.9028
- feature: Update metric.scores() to account for MN_IBI_Fish, Issue
\#111
- If another metric is below a threshold then score as zero
- refactor: Add hooks in metric.scores() for score zero modifications,
Issue \#111
- refactor: Update help example for metric.scores()
## Changes in version 1.0.2.9027
- refactor: Update MetricNames.xlsx to mark bug metrics to use for Large
Rare metric calculations
- refactor: Add remove spaces to columns for metric calculation
- Bugs
- HABIT, FFG, LIFE_CYCLE, FFG2, THERMAL_INDICATOR, HABSTRUCT ,
ELEVATION_ATTR, GRADIENT_ATTR, WSAREA_ATTR
- Fish
- TROPHIC, THERMAL_INDICATOR, REPRODUCTION, HABITAT, ELEVATION_ATTR
, GRADIENT_ATTR, WSAREA_ATTR
- refactor: Add new fish metrics for MN_Fish_IBI, Issue \#111
- metric.values
- MetricNames.xlsx
- MetricScoring.xlsx
- style: Reorder some metrics in fish section of metric.values
- Organize Munge section by column name
- tests: metric.values() move time inside verbose to avoid warning
message
## Changes in version 1.0.2.9026
- refactor: Remove match_caps parameter from taxa_translate function,
Issue \#111
- tests: Remove taxa_translate match_caps test, Issue \#111
## Changes in version 1.0.2.9025
- tests: Add tests for removing white space, Issue \#111
- feature: Update taxa_translate with clean parameters, Issue \#111
## Changes in version 1.0.2.9024
- refactor: Update for MN_Fish_IBI, Issue \#92
- MetricNames.xlsx
- metric_values.R
- Updates to data munging prior to metric calculation
## Changes in version 1.0.2.9023
- refactor: Update MetricScoring.xlsx for MN_Bug_IBI, Issue \#92
## Changes in version 1.0.2.9022
- refactor: Update MetricScoring.xlsx for MN_Fish_IBI, Issue \#92
- refactor: Update MetricNames.xlsx for MN_Fish_IBI, Issue \#92
## Changes in version 1.0.2.9021
- refactor: Update MetricScoring.xlsx for MN_Fish_IBI, Issue \#92
- refactor: Update MetricNames.xlsx for MN_Fish_IBI, Issue \#92
- docs: Edit README for timeout issue
## Changes in version 1.0.2.9020
- refactor: Update pi_Cheu text in MetricNames.xlsx
## Changes in version 1.0.2.9019
- refactor: Update MetricNames.xlsx for Great Plains BCG
## Changes in version 1.0.2.9018
- refactor: Merge pull request 114
- Add metrics (bugs and fish) for Great Plains BCG
## Changes in version 1.0.2.9017
- feature: Options added to taxa_translate, Issue \#111
- Match on ALL CAPS
- Clean input names
- Not fully implemented
## Changes in version 1.0.2.9016
- refactor: Post merge updates
- Reconcile names for same calculation but different programs and
columns
- benthicInvertivore in merge to habitat_beninvert
- MetricNames.xlsx
- metric_values.R
- tests: Update fish metric names for new metrics
- refactor: Add MN_IBI_Fish metrics to MetricNames.xlsx, Issue \#92
## Changes in version 1.0.2.9015
- refactor: Merge pull request 110
- New metrics for NM BCG Fish
- MetricNames.xlsx
- metric_values.R
## Changes in version 1.0.2.9014
- refactor: New index scoring regimes, Issue \#92
- MetricScoring.xlsx
- AVERAGE_100_M10_R2 for MN_IBI_Bugs
- AVERAGE_100_M10_R3 for MN_IBI_Fish
## Changes in version 1.0.2.9013
- refactor: Modify scoring regime (AVERAGE_100_M10), Issue \#92
- Round scaling to 2 decimals
- Modify MetricScoring.xlsx
- `metric.scores`
- refactor: Add new scoring regime (CAT_0510) to `metric.scores`, Issue
\#92
- fix: Update MN_IBI_Fish thresholds, MetricScoring.xlsx, Issue \#92
## Changes in version 1.0.2.9012
- refactor: Update MetricScoring.xlsx, Issue \#92
- New scoring regime, AVERAGE_100_M10
- Change MN_Bug_IBI scoring regime
- refactor: Add new scoring regime calculation to `metric.scores` ,
Issue \#92
## Changes in version 1.0.2.9011
- fix: Update MN IBI Fish thresholds in MetricScoring.xlsx, Issue \#92
- test: Update thresholds for extra digits in MetricScoring.xlsx, Issue
\#101
- Adjust from 11 to 13 digits for one index (WY)
## Changes in version 1.0.2.9010
- fix: Update MN IBI Bugs thresholds in MetricScoring.xlsx, Issue \#92
## Changes in version 1.0.2.9009
- refactor: Update MN IBI Fish metrics in MetricScoring.xlsx, Issue \#92
## Changes in version 1.0.2.9008
- refactor: Update MN IBI Fish metrics in MetricScoring.xlsx, Issue \#92
## Changes in version 1.0.2.9007
- refactor: Update MN IBI Fish metrics in MetricScoring.xlsx, Issue \#92
## Changes in version 1.0.2.9006
- fix: Update `metric.values` pi_dom01_BCG\* metrics
- Add zero to max function to avoid max returning -Inf
- refactor: Update `metric.values` debug steps for fish
- Was 10 and changed to 12
## Changes in version 1.0.2.9005
- refactor: Update MetricScoring.xlsx for WY, Issue \#101
- fix: After testing add 4 metrics for WY from scoring, Issue \#101
- Add to MetricNames.xlsx
- Add to metric.values.R
## Changes in version 1.0.2.9004
- fix: Update MetricNames.xlsx for missing coral metric per tests
## Changes in version 1.0.2.9003
- refactor: Update Excel files for MN IBI
- MetricFlags.xlsx
- MetricNames.xlsx
- MetricScoring.xlsx
## Changes in version 1.0.2.9002
- refactor: Update GitHub Actions with usethis::use_github_action()
- check-standard
- test-coverage