-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathNAMESPACE
More file actions
887 lines (886 loc) · 32.4 KB
/
Copy pathNAMESPACE
File metadata and controls
887 lines (886 loc) · 32.4 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
# Generated by roxygen2: do not edit by hand
S3method("[",measure_criteria)
S3method("[",measure_list)
S3method("[",measure_nd_list)
S3method("[[",measure_list)
S3method("[[",measure_nd_list)
S3method(augment,measure_calibration)
S3method(autoplot,measure_bland_altman)
S3method(autoplot,measure_calibration)
S3method(autoplot,measure_control_chart)
S3method(autoplot,measure_deming_regression)
S3method(autoplot,measure_linearity)
S3method(autoplot,measure_list)
S3method(autoplot,measure_matrix_effect)
S3method(autoplot,measure_passing_bablok)
S3method(autoplot,measure_proficiency_score)
S3method(autoplot,measure_tbl)
S3method(autoplot,measure_uncertainty_budget)
S3method(autoplot,recipe)
S3method(bake,step_measure_absorbance)
S3method(bake,step_measure_align_cow)
S3method(bake,step_measure_align_dtw)
S3method(bake,step_measure_align_ptw)
S3method(bake,step_measure_align_reference)
S3method(bake,step_measure_align_shift)
S3method(bake,step_measure_augment_noise)
S3method(bake,step_measure_augment_scale)
S3method(bake,step_measure_augment_shift)
S3method(bake,step_measure_baseline_airpls)
S3method(bake,step_measure_baseline_als)
S3method(bake,step_measure_baseline_arpls)
S3method(bake,step_measure_baseline_aspls)
S3method(bake,step_measure_baseline_auto)
S3method(bake,step_measure_baseline_custom)
S3method(bake,step_measure_baseline_fastchrom)
S3method(bake,step_measure_baseline_gpc)
S3method(bake,step_measure_baseline_iarpls)
S3method(bake,step_measure_baseline_minima)
S3method(bake,step_measure_baseline_morph)
S3method(bake,step_measure_baseline_morphological)
S3method(bake,step_measure_baseline_poly)
S3method(bake,step_measure_baseline_py)
S3method(bake,step_measure_baseline_rf)
S3method(bake,step_measure_baseline_rolling)
S3method(bake,step_measure_baseline_snip)
S3method(bake,step_measure_baseline_tophat)
S3method(bake,step_measure_batch_reference)
S3method(bake,step_measure_bin)
S3method(bake,step_measure_calibrate_x)
S3method(bake,step_measure_calibrate_y)
S3method(bake,step_measure_center)
S3method(bake,step_measure_channel_align)
S3method(bake,step_measure_channel_combine)
S3method(bake,step_measure_channel_ratio)
S3method(bake,step_measure_derivative)
S3method(bake,step_measure_derivative_gap)
S3method(bake,step_measure_despike)
S3method(bake,step_measure_detrend)
S3method(bake,step_measure_dilution_correct)
S3method(bake,step_measure_drift_linear)
S3method(bake,step_measure_drift_qc_loess)
S3method(bake,step_measure_drift_spline)
S3method(bake,step_measure_emsc)
S3method(bake,step_measure_exclude)
S3method(bake,step_measure_filter_fourier)
S3method(bake,step_measure_impute)
S3method(bake,step_measure_input_long)
S3method(bake,step_measure_input_wide)
S3method(bake,step_measure_integrals)
S3method(bake,step_measure_interpolate)
S3method(bake,step_measure_kubelka_munk)
S3method(bake,step_measure_log)
S3method(bake,step_measure_map)
S3method(bake,step_measure_mcr_als)
S3method(bake,step_measure_moments)
S3method(bake,step_measure_msc)
S3method(bake,step_measure_mw_averages)
S3method(bake,step_measure_mw_distribution)
S3method(bake,step_measure_mw_fractions)
S3method(bake,step_measure_normalize_auc)
S3method(bake,step_measure_normalize_max)
S3method(bake,step_measure_normalize_peak)
S3method(bake,step_measure_normalize_range)
S3method(bake,step_measure_normalize_sum)
S3method(bake,step_measure_normalize_vector)
S3method(bake,step_measure_osc)
S3method(bake,step_measure_output_long)
S3method(bake,step_measure_output_wide)
S3method(bake,step_measure_parafac)
S3method(bake,step_measure_peaks_deconvolve)
S3method(bake,step_measure_peaks_detect)
S3method(bake,step_measure_peaks_filter)
S3method(bake,step_measure_peaks_integrate)
S3method(bake,step_measure_peaks_properties)
S3method(bake,step_measure_peaks_to_table)
S3method(bake,step_measure_qc_bracket)
S3method(bake,step_measure_qc_outlier)
S3method(bake,step_measure_qc_saturated)
S3method(bake,step_measure_qc_snr)
S3method(bake,step_measure_ratio_reference)
S3method(bake,step_measure_ratios)
S3method(bake,step_measure_resample)
S3method(bake,step_measure_savitzky_golay)
S3method(bake,step_measure_scale_auto)
S3method(bake,step_measure_scale_pareto)
S3method(bake,step_measure_scale_range)
S3method(bake,step_measure_scale_vast)
S3method(bake,step_measure_smooth_gaussian)
S3method(bake,step_measure_smooth_ma)
S3method(bake,step_measure_smooth_median)
S3method(bake,step_measure_smooth_wavelet)
S3method(bake,step_measure_snv)
S3method(bake,step_measure_standard_addition)
S3method(bake,step_measure_subtract_blank)
S3method(bake,step_measure_subtract_reference)
S3method(bake,step_measure_surrogate_recovery)
S3method(bake,step_measure_transmittance)
S3method(bake,step_measure_trim)
S3method(bake,step_measure_tucker)
S3method(c,measure_criteria)
S3method(c,measure_list)
S3method(c,measure_nd_list)
S3method(format,measure_list)
S3method(format,measure_nd_list)
S3method(format,peaks_list)
S3method(fortify,measure_calibration)
S3method(ggplot2::fortify,measure_list)
S3method(ggplot2::fortify,measure_tbl)
S3method(glance,measure_bland_altman)
S3method(glance,measure_calibration)
S3method(glance,measure_deming_regression)
S3method(glance,measure_matrix_effect)
S3method(glance,measure_passing_bablok)
S3method(glance,measure_proficiency_score)
S3method(measure_apply,measure_list)
S3method(measure_apply,measure_nd_list)
S3method(measure_apply,measure_nd_tbl)
S3method(measure_apply,measure_tbl)
S3method(measure_dim_names,default)
S3method(measure_dim_names,measure_nd_list)
S3method(measure_dim_names,measure_nd_tbl)
S3method(measure_dim_units,default)
S3method(measure_dim_units,measure_nd_list)
S3method(measure_dim_units,measure_nd_tbl)
S3method(measure_fold,measure_list)
S3method(measure_fold,measure_tbl)
S3method(measure_grid_info,default)
S3method(measure_grid_info,measure_nd_list)
S3method(measure_grid_info,measure_nd_tbl)
S3method(measure_is_regular,default)
S3method(measure_is_regular,measure_nd_list)
S3method(measure_is_regular,measure_nd_tbl)
S3method(measure_ndim,default)
S3method(measure_ndim,measure_list)
S3method(measure_ndim,measure_nd_list)
S3method(measure_ndim,measure_nd_tbl)
S3method(measure_ndim,measure_tbl)
S3method(measure_project,measure_nd_list)
S3method(measure_project,measure_nd_tbl)
S3method(measure_slice,measure_nd_list)
S3method(measure_slice,measure_nd_tbl)
S3method(measure_unfold,measure_nd_list)
S3method(measure_unfold,measure_nd_tbl)
S3method(peak_model_area,default)
S3method(peak_model_area,gaussian_peak_model)
S3method(peak_model_area,lorentzian_peak_model)
S3method(peak_model_bounds,bigaussian_peak_model)
S3method(peak_model_bounds,default)
S3method(peak_model_bounds,emg_peak_model)
S3method(peak_model_bounds,gaussian_peak_model)
S3method(peak_model_bounds,lorentzian_peak_model)
S3method(peak_model_gradient,default)
S3method(peak_model_gradient,gaussian_peak_model)
S3method(peak_model_gradient,lorentzian_peak_model)
S3method(peak_model_initial_guess,bigaussian_peak_model)
S3method(peak_model_initial_guess,default)
S3method(peak_model_initial_guess,emg_peak_model)
S3method(peak_model_initial_guess,gaussian_peak_model)
S3method(peak_model_initial_guess,lorentzian_peak_model)
S3method(peak_model_value,bigaussian_peak_model)
S3method(peak_model_value,default)
S3method(peak_model_value,emg_peak_model)
S3method(peak_model_value,gaussian_peak_model)
S3method(peak_model_value,lorentzian_peak_model)
S3method(pillar::obj_print_data,measure_list)
S3method(pillar::obj_print_data,measure_nd_list)
S3method(prep,step_measure_absorbance)
S3method(prep,step_measure_align_cow)
S3method(prep,step_measure_align_dtw)
S3method(prep,step_measure_align_ptw)
S3method(prep,step_measure_align_reference)
S3method(prep,step_measure_align_shift)
S3method(prep,step_measure_augment_noise)
S3method(prep,step_measure_augment_scale)
S3method(prep,step_measure_augment_shift)
S3method(prep,step_measure_baseline_airpls)
S3method(prep,step_measure_baseline_als)
S3method(prep,step_measure_baseline_arpls)
S3method(prep,step_measure_baseline_aspls)
S3method(prep,step_measure_baseline_auto)
S3method(prep,step_measure_baseline_custom)
S3method(prep,step_measure_baseline_fastchrom)
S3method(prep,step_measure_baseline_gpc)
S3method(prep,step_measure_baseline_iarpls)
S3method(prep,step_measure_baseline_minima)
S3method(prep,step_measure_baseline_morph)
S3method(prep,step_measure_baseline_morphological)
S3method(prep,step_measure_baseline_poly)
S3method(prep,step_measure_baseline_py)
S3method(prep,step_measure_baseline_rf)
S3method(prep,step_measure_baseline_rolling)
S3method(prep,step_measure_baseline_snip)
S3method(prep,step_measure_baseline_tophat)
S3method(prep,step_measure_batch_reference)
S3method(prep,step_measure_bin)
S3method(prep,step_measure_calibrate_x)
S3method(prep,step_measure_calibrate_y)
S3method(prep,step_measure_center)
S3method(prep,step_measure_channel_align)
S3method(prep,step_measure_channel_combine)
S3method(prep,step_measure_channel_ratio)
S3method(prep,step_measure_derivative)
S3method(prep,step_measure_derivative_gap)
S3method(prep,step_measure_despike)
S3method(prep,step_measure_detrend)
S3method(prep,step_measure_dilution_correct)
S3method(prep,step_measure_drift_linear)
S3method(prep,step_measure_drift_qc_loess)
S3method(prep,step_measure_drift_spline)
S3method(prep,step_measure_emsc)
S3method(prep,step_measure_exclude)
S3method(prep,step_measure_filter_fourier)
S3method(prep,step_measure_impute)
S3method(prep,step_measure_input_long)
S3method(prep,step_measure_input_wide)
S3method(prep,step_measure_integrals)
S3method(prep,step_measure_interpolate)
S3method(prep,step_measure_kubelka_munk)
S3method(prep,step_measure_log)
S3method(prep,step_measure_map)
S3method(prep,step_measure_mcr_als)
S3method(prep,step_measure_moments)
S3method(prep,step_measure_msc)
S3method(prep,step_measure_mw_averages)
S3method(prep,step_measure_mw_distribution)
S3method(prep,step_measure_mw_fractions)
S3method(prep,step_measure_normalize_auc)
S3method(prep,step_measure_normalize_max)
S3method(prep,step_measure_normalize_peak)
S3method(prep,step_measure_normalize_range)
S3method(prep,step_measure_normalize_sum)
S3method(prep,step_measure_normalize_vector)
S3method(prep,step_measure_osc)
S3method(prep,step_measure_output_long)
S3method(prep,step_measure_output_wide)
S3method(prep,step_measure_parafac)
S3method(prep,step_measure_peaks_deconvolve)
S3method(prep,step_measure_peaks_detect)
S3method(prep,step_measure_peaks_filter)
S3method(prep,step_measure_peaks_integrate)
S3method(prep,step_measure_peaks_properties)
S3method(prep,step_measure_peaks_to_table)
S3method(prep,step_measure_qc_bracket)
S3method(prep,step_measure_qc_outlier)
S3method(prep,step_measure_qc_saturated)
S3method(prep,step_measure_qc_snr)
S3method(prep,step_measure_ratio_reference)
S3method(prep,step_measure_ratios)
S3method(prep,step_measure_resample)
S3method(prep,step_measure_savitzky_golay)
S3method(prep,step_measure_scale_auto)
S3method(prep,step_measure_scale_pareto)
S3method(prep,step_measure_scale_range)
S3method(prep,step_measure_scale_vast)
S3method(prep,step_measure_smooth_gaussian)
S3method(prep,step_measure_smooth_ma)
S3method(prep,step_measure_smooth_median)
S3method(prep,step_measure_smooth_wavelet)
S3method(prep,step_measure_snv)
S3method(prep,step_measure_standard_addition)
S3method(prep,step_measure_subtract_blank)
S3method(prep,step_measure_subtract_reference)
S3method(prep,step_measure_surrogate_recovery)
S3method(prep,step_measure_transmittance)
S3method(prep,step_measure_trim)
S3method(prep,step_measure_tucker)
S3method(print,deconv_quality)
S3method(print,measure_accuracy)
S3method(print,measure_assessment)
S3method(print,measure_bland_altman)
S3method(print,measure_calibration)
S3method(print,measure_calibration_verify)
S3method(print,measure_carryover)
S3method(print,measure_control_chart)
S3method(print,measure_control_limits)
S3method(print,measure_criteria)
S3method(print,measure_criterion)
S3method(print,measure_deming_regression)
S3method(print,measure_gage_rr)
S3method(print,measure_linearity)
S3method(print,measure_list)
S3method(print,measure_lod)
S3method(print,measure_lod_loq)
S3method(print,measure_loq)
S3method(print,measure_matrix_effect)
S3method(print,measure_nd_list)
S3method(print,measure_nd_tbl)
S3method(print,measure_passing_bablok)
S3method(print,measure_precision)
S3method(print,measure_proficiency_score)
S3method(print,measure_sst)
S3method(print,measure_tbl)
S3method(print,measure_uncertainty_budget)
S3method(print,measure_validation_report)
S3method(print,peak_model)
S3method(print,step_measure_absorbance)
S3method(print,step_measure_align_cow)
S3method(print,step_measure_align_dtw)
S3method(print,step_measure_align_ptw)
S3method(print,step_measure_align_reference)
S3method(print,step_measure_align_shift)
S3method(print,step_measure_augment_noise)
S3method(print,step_measure_augment_scale)
S3method(print,step_measure_augment_shift)
S3method(print,step_measure_baseline_airpls)
S3method(print,step_measure_baseline_als)
S3method(print,step_measure_baseline_arpls)
S3method(print,step_measure_baseline_aspls)
S3method(print,step_measure_baseline_auto)
S3method(print,step_measure_baseline_custom)
S3method(print,step_measure_baseline_fastchrom)
S3method(print,step_measure_baseline_gpc)
S3method(print,step_measure_baseline_iarpls)
S3method(print,step_measure_baseline_minima)
S3method(print,step_measure_baseline_morph)
S3method(print,step_measure_baseline_morphological)
S3method(print,step_measure_baseline_poly)
S3method(print,step_measure_baseline_py)
S3method(print,step_measure_baseline_rf)
S3method(print,step_measure_baseline_rolling)
S3method(print,step_measure_baseline_snip)
S3method(print,step_measure_baseline_tophat)
S3method(print,step_measure_batch_reference)
S3method(print,step_measure_bin)
S3method(print,step_measure_calibrate_x)
S3method(print,step_measure_calibrate_y)
S3method(print,step_measure_center)
S3method(print,step_measure_channel_align)
S3method(print,step_measure_channel_combine)
S3method(print,step_measure_channel_ratio)
S3method(print,step_measure_derivative)
S3method(print,step_measure_derivative_gap)
S3method(print,step_measure_despike)
S3method(print,step_measure_detrend)
S3method(print,step_measure_dilution_correct)
S3method(print,step_measure_drift_linear)
S3method(print,step_measure_drift_qc_loess)
S3method(print,step_measure_drift_spline)
S3method(print,step_measure_emsc)
S3method(print,step_measure_exclude)
S3method(print,step_measure_filter_fourier)
S3method(print,step_measure_impute)
S3method(print,step_measure_input_long)
S3method(print,step_measure_input_wide)
S3method(print,step_measure_integrals)
S3method(print,step_measure_interpolate)
S3method(print,step_measure_kubelka_munk)
S3method(print,step_measure_log)
S3method(print,step_measure_map)
S3method(print,step_measure_mcr_als)
S3method(print,step_measure_moments)
S3method(print,step_measure_msc)
S3method(print,step_measure_mw_averages)
S3method(print,step_measure_mw_distribution)
S3method(print,step_measure_mw_fractions)
S3method(print,step_measure_normalize_auc)
S3method(print,step_measure_normalize_max)
S3method(print,step_measure_normalize_peak)
S3method(print,step_measure_normalize_range)
S3method(print,step_measure_normalize_sum)
S3method(print,step_measure_normalize_vector)
S3method(print,step_measure_osc)
S3method(print,step_measure_output_long)
S3method(print,step_measure_output_wide)
S3method(print,step_measure_parafac)
S3method(print,step_measure_peaks_deconvolve)
S3method(print,step_measure_peaks_detect)
S3method(print,step_measure_peaks_filter)
S3method(print,step_measure_peaks_integrate)
S3method(print,step_measure_peaks_properties)
S3method(print,step_measure_peaks_to_table)
S3method(print,step_measure_qc_bracket)
S3method(print,step_measure_qc_outlier)
S3method(print,step_measure_qc_saturated)
S3method(print,step_measure_qc_snr)
S3method(print,step_measure_ratio_reference)
S3method(print,step_measure_ratios)
S3method(print,step_measure_resample)
S3method(print,step_measure_savitzky_golay)
S3method(print,step_measure_scale_auto)
S3method(print,step_measure_scale_pareto)
S3method(print,step_measure_scale_range)
S3method(print,step_measure_scale_vast)
S3method(print,step_measure_smooth_gaussian)
S3method(print,step_measure_smooth_ma)
S3method(print,step_measure_smooth_median)
S3method(print,step_measure_smooth_wavelet)
S3method(print,step_measure_snv)
S3method(print,step_measure_standard_addition)
S3method(print,step_measure_subtract_blank)
S3method(print,step_measure_subtract_reference)
S3method(print,step_measure_surrogate_recovery)
S3method(print,step_measure_transmittance)
S3method(print,step_measure_trim)
S3method(print,step_measure_tucker)
S3method(print,uncertainty_component)
S3method(required_pkgs,step_measure_absorbance)
S3method(required_pkgs,step_measure_align_dtw)
S3method(required_pkgs,step_measure_align_ptw)
S3method(required_pkgs,step_measure_augment_noise)
S3method(required_pkgs,step_measure_augment_scale)
S3method(required_pkgs,step_measure_augment_shift)
S3method(required_pkgs,step_measure_baseline_als)
S3method(required_pkgs,step_measure_baseline_custom)
S3method(required_pkgs,step_measure_baseline_gpc)
S3method(required_pkgs,step_measure_baseline_poly)
S3method(required_pkgs,step_measure_baseline_py)
S3method(required_pkgs,step_measure_baseline_rf)
S3method(required_pkgs,step_measure_bin)
S3method(required_pkgs,step_measure_calibrate_x)
S3method(required_pkgs,step_measure_calibrate_y)
S3method(required_pkgs,step_measure_center)
S3method(required_pkgs,step_measure_derivative)
S3method(required_pkgs,step_measure_derivative_gap)
S3method(required_pkgs,step_measure_detrend)
S3method(required_pkgs,step_measure_emsc)
S3method(required_pkgs,step_measure_integrals)
S3method(required_pkgs,step_measure_kubelka_munk)
S3method(required_pkgs,step_measure_log)
S3method(required_pkgs,step_measure_moments)
S3method(required_pkgs,step_measure_mw_averages)
S3method(required_pkgs,step_measure_mw_distribution)
S3method(required_pkgs,step_measure_mw_fractions)
S3method(required_pkgs,step_measure_normalize_auc)
S3method(required_pkgs,step_measure_normalize_max)
S3method(required_pkgs,step_measure_normalize_peak)
S3method(required_pkgs,step_measure_normalize_range)
S3method(required_pkgs,step_measure_normalize_sum)
S3method(required_pkgs,step_measure_normalize_vector)
S3method(required_pkgs,step_measure_osc)
S3method(required_pkgs,step_measure_ratio_reference)
S3method(required_pkgs,step_measure_ratios)
S3method(required_pkgs,step_measure_resample)
S3method(required_pkgs,step_measure_savitzky_golay)
S3method(required_pkgs,step_measure_scale_auto)
S3method(required_pkgs,step_measure_scale_pareto)
S3method(required_pkgs,step_measure_scale_range)
S3method(required_pkgs,step_measure_scale_vast)
S3method(required_pkgs,step_measure_smooth_wavelet)
S3method(required_pkgs,step_measure_subtract_blank)
S3method(required_pkgs,step_measure_subtract_reference)
S3method(required_pkgs,step_measure_transmittance)
S3method(summary,deconv_quality)
S3method(summary,measure_validation_report)
S3method(tidy,measure_accuracy)
S3method(tidy,measure_bland_altman)
S3method(tidy,measure_calibration)
S3method(tidy,measure_calibration_verify)
S3method(tidy,measure_carryover)
S3method(tidy,measure_control_chart)
S3method(tidy,measure_control_limits)
S3method(tidy,measure_deming_regression)
S3method(tidy,measure_gage_rr)
S3method(tidy,measure_linearity)
S3method(tidy,measure_lod)
S3method(tidy,measure_lod_loq)
S3method(tidy,measure_loq)
S3method(tidy,measure_matrix_effect)
S3method(tidy,measure_passing_bablok)
S3method(tidy,measure_precision)
S3method(tidy,measure_proficiency_score)
S3method(tidy,measure_sst)
S3method(tidy,measure_uncertainty_budget)
S3method(tidy,measure_validation_report)
S3method(tidy,step_measure_absorbance)
S3method(tidy,step_measure_align_cow)
S3method(tidy,step_measure_align_dtw)
S3method(tidy,step_measure_align_ptw)
S3method(tidy,step_measure_align_reference)
S3method(tidy,step_measure_align_shift)
S3method(tidy,step_measure_augment_noise)
S3method(tidy,step_measure_augment_scale)
S3method(tidy,step_measure_augment_shift)
S3method(tidy,step_measure_baseline_airpls)
S3method(tidy,step_measure_baseline_als)
S3method(tidy,step_measure_baseline_arpls)
S3method(tidy,step_measure_baseline_aspls)
S3method(tidy,step_measure_baseline_auto)
S3method(tidy,step_measure_baseline_custom)
S3method(tidy,step_measure_baseline_fastchrom)
S3method(tidy,step_measure_baseline_gpc)
S3method(tidy,step_measure_baseline_iarpls)
S3method(tidy,step_measure_baseline_minima)
S3method(tidy,step_measure_baseline_morph)
S3method(tidy,step_measure_baseline_morphological)
S3method(tidy,step_measure_baseline_poly)
S3method(tidy,step_measure_baseline_py)
S3method(tidy,step_measure_baseline_rf)
S3method(tidy,step_measure_baseline_rolling)
S3method(tidy,step_measure_baseline_snip)
S3method(tidy,step_measure_baseline_tophat)
S3method(tidy,step_measure_batch_reference)
S3method(tidy,step_measure_bin)
S3method(tidy,step_measure_calibrate_x)
S3method(tidy,step_measure_calibrate_y)
S3method(tidy,step_measure_center)
S3method(tidy,step_measure_channel_align)
S3method(tidy,step_measure_channel_combine)
S3method(tidy,step_measure_channel_ratio)
S3method(tidy,step_measure_derivative)
S3method(tidy,step_measure_derivative_gap)
S3method(tidy,step_measure_despike)
S3method(tidy,step_measure_detrend)
S3method(tidy,step_measure_dilution_correct)
S3method(tidy,step_measure_drift_linear)
S3method(tidy,step_measure_drift_qc_loess)
S3method(tidy,step_measure_drift_spline)
S3method(tidy,step_measure_emsc)
S3method(tidy,step_measure_exclude)
S3method(tidy,step_measure_filter_fourier)
S3method(tidy,step_measure_impute)
S3method(tidy,step_measure_input_long)
S3method(tidy,step_measure_input_wide)
S3method(tidy,step_measure_integrals)
S3method(tidy,step_measure_interpolate)
S3method(tidy,step_measure_kubelka_munk)
S3method(tidy,step_measure_log)
S3method(tidy,step_measure_map)
S3method(tidy,step_measure_mcr_als)
S3method(tidy,step_measure_moments)
S3method(tidy,step_measure_msc)
S3method(tidy,step_measure_mw_averages)
S3method(tidy,step_measure_mw_distribution)
S3method(tidy,step_measure_mw_fractions)
S3method(tidy,step_measure_normalize_auc)
S3method(tidy,step_measure_normalize_max)
S3method(tidy,step_measure_normalize_peak)
S3method(tidy,step_measure_normalize_range)
S3method(tidy,step_measure_normalize_sum)
S3method(tidy,step_measure_normalize_vector)
S3method(tidy,step_measure_osc)
S3method(tidy,step_measure_output_long)
S3method(tidy,step_measure_output_wide)
S3method(tidy,step_measure_parafac)
S3method(tidy,step_measure_peaks_deconvolve)
S3method(tidy,step_measure_peaks_detect)
S3method(tidy,step_measure_peaks_filter)
S3method(tidy,step_measure_peaks_integrate)
S3method(tidy,step_measure_peaks_properties)
S3method(tidy,step_measure_peaks_to_table)
S3method(tidy,step_measure_qc_bracket)
S3method(tidy,step_measure_qc_outlier)
S3method(tidy,step_measure_qc_saturated)
S3method(tidy,step_measure_qc_snr)
S3method(tidy,step_measure_ratio_reference)
S3method(tidy,step_measure_ratios)
S3method(tidy,step_measure_resample)
S3method(tidy,step_measure_savitzky_golay)
S3method(tidy,step_measure_scale_auto)
S3method(tidy,step_measure_scale_pareto)
S3method(tidy,step_measure_scale_range)
S3method(tidy,step_measure_scale_vast)
S3method(tidy,step_measure_smooth_gaussian)
S3method(tidy,step_measure_smooth_ma)
S3method(tidy,step_measure_smooth_median)
S3method(tidy,step_measure_smooth_wavelet)
S3method(tidy,step_measure_snv)
S3method(tidy,step_measure_standard_addition)
S3method(tidy,step_measure_subtract_blank)
S3method(tidy,step_measure_subtract_reference)
S3method(tidy,step_measure_surrogate_recovery)
S3method(tidy,step_measure_transmittance)
S3method(tidy,step_measure_trim)
S3method(tidy,step_measure_tucker)
S3method(tunable,step_measure_align_cow)
S3method(tunable,step_measure_align_shift)
S3method(tunable,step_measure_baseline_airpls)
S3method(tunable,step_measure_baseline_als)
S3method(tunable,step_measure_baseline_arpls)
S3method(tunable,step_measure_baseline_aspls)
S3method(tunable,step_measure_baseline_custom)
S3method(tunable,step_measure_baseline_fastchrom)
S3method(tunable,step_measure_baseline_iarpls)
S3method(tunable,step_measure_baseline_poly)
S3method(tunable,step_measure_baseline_py)
S3method(tunable,step_measure_baseline_rf)
S3method(tunable,step_measure_bin)
S3method(tunable,step_measure_derivative)
S3method(tunable,step_measure_derivative_gap)
S3method(tunable,step_measure_despike)
S3method(tunable,step_measure_detrend)
S3method(tunable,step_measure_emsc)
S3method(tunable,step_measure_filter_fourier)
S3method(tunable,step_measure_normalize_peak)
S3method(tunable,step_measure_osc)
S3method(tunable,step_measure_qc_outlier)
S3method(tunable,step_measure_savitzky_golay)
S3method(tunable,step_measure_smooth_gaussian)
S3method(tunable,step_measure_smooth_ma)
S3method(tunable,step_measure_smooth_median)
S3method(vctrs::vec_ptype_abbr,measure_list)
S3method(vctrs::vec_ptype_abbr,measure_nd_list)
S3method(vctrs::vec_ptype_abbr,measure_nd_tbl)
S3method(vctrs::vec_ptype_abbr,measure_tbl)
S3method(vctrs::vec_ptype_full,measure_list)
S3method(vctrs::vec_ptype_full,measure_nd_list)
export(add_param_jitter)
export(add_validation_section)
export(align_max_shift)
export(align_segment_length)
export(all_pass)
export(assess_deconv_quality)
export(augment)
export(baseline_alpha)
export(baseline_asymmetry)
export(baseline_degree)
export(baseline_half_window)
export(baseline_lambda)
export(baseline_span)
export(baseline_window)
export(bigaussian_peak_model)
export(bin_width)
export(check_axis_consistency)
export(check_for_measure)
export(check_measure_recipe)
export(check_quality_gates)
export(create_peak_model)
export(criteria_bioanalytical)
export(criteria_bland_altman)
export(criteria_ich_q2)
export(criteria_matrix_effects)
export(criteria_method_comparison)
export(criteria_proficiency_testing)
export(criteria_surrogate_recovery)
export(criterion)
export(derivative_gap)
export(derivative_order)
export(derivative_segment)
export(despike_threshold)
export(differentiation_order)
export(emg_peak_model)
export(emsc_degree)
export(find_measure_cols)
export(find_measure_nd_cols)
export(find_peaks_cols)
export(fourier_cutoff)
export(gaussian_peak_model)
export(get_failures)
export(get_measure_col_ndim)
export(get_peak_algorithm)
export(get_validation_section)
export(glance)
export(has_measure_col)
export(has_peak_algorithm)
export(has_peak_model)
export(has_validation_section)
export(infer_axis_type)
export(initialize_peak_params)
export(is_measure_calibration)
export(is_measure_list)
export(is_measure_nd_list)
export(is_measure_nd_tbl)
export(is_measure_tbl)
export(is_peak_model)
export(is_peaks_list)
export(lorentzian_peak_model)
export(measure_accuracy)
export(measure_apply)
export(measure_assess)
export(measure_axis_info)
export(measure_bland_altman)
export(measure_calibration_fit)
export(measure_calibration_predict)
export(measure_calibration_verify)
export(measure_carryover)
export(measure_column_patterns)
export(measure_column_summary)
export(measure_control_chart)
export(measure_control_limits)
export(measure_criteria)
export(measure_deming_regression)
export(measure_detect_drift)
export(measure_dim_names)
export(measure_dim_units)
export(measure_fold)
export(measure_gage_rr)
export(measure_grid_info)
export(measure_identify_columns)
export(measure_intermediate_precision)
export(measure_is_regular)
export(measure_linearity)
export(measure_lod)
export(measure_lod_loq)
export(measure_loq)
export(measure_map)
export(measure_map_safely)
export(measure_matrix_effect)
export(measure_ndim)
export(measure_packs)
export(measure_passing_bablok)
export(measure_plot_summary)
export(measure_proficiency_score)
export(measure_project)
export(measure_quality_summary)
export(measure_repeatability)
export(measure_reproducibility)
export(measure_sample_types)
export(measure_slice)
export(measure_standardize_sample_type)
export(measure_steps)
export(measure_summarize)
export(measure_system_suitability)
export(measure_uncertainty)
export(measure_uncertainty_budget)
export(measure_unfold)
export(measure_validate_metadata)
export(measure_validation_report)
export(new_measure_list)
export(new_measure_nd_list)
export(new_measure_nd_tbl)
export(new_measure_tbl)
export(new_peak_model)
export(optimize_deconvolution)
export(osc_n_components)
export(outlier_threshold)
export(peak_algorithms)
export(peak_location_max)
export(peak_location_min)
export(peak_model_area)
export(peak_model_bounds)
export(peak_model_gradient)
export(peak_model_gradient_numerical)
export(peak_model_initial_guess)
export(peak_model_param_names)
export(peak_model_value)
export(peak_models)
export(plot_measure_comparison)
export(register_measure_pack)
export(register_measure_step)
export(register_peak_algorithm)
export(register_peak_model)
export(render_validation_report)
export(set_measure_roles)
export(smooth_sigma)
export(smooth_window)
export(step_measure_absorbance)
export(step_measure_align_cow)
export(step_measure_align_dtw)
export(step_measure_align_ptw)
export(step_measure_align_reference)
export(step_measure_align_shift)
export(step_measure_augment_noise)
export(step_measure_augment_scale)
export(step_measure_augment_shift)
export(step_measure_baseline_airpls)
export(step_measure_baseline_als)
export(step_measure_baseline_arpls)
export(step_measure_baseline_aspls)
export(step_measure_baseline_auto)
export(step_measure_baseline_custom)
export(step_measure_baseline_fastchrom)
export(step_measure_baseline_gpc)
export(step_measure_baseline_iarpls)
export(step_measure_baseline_minima)
export(step_measure_baseline_morph)
export(step_measure_baseline_morphological)
export(step_measure_baseline_poly)
export(step_measure_baseline_py)
export(step_measure_baseline_rf)
export(step_measure_baseline_rolling)
export(step_measure_baseline_snip)
export(step_measure_baseline_tophat)
export(step_measure_batch_reference)
export(step_measure_bin)
export(step_measure_calibrate_x)
export(step_measure_calibrate_y)
export(step_measure_center)
export(step_measure_channel_align)
export(step_measure_channel_combine)
export(step_measure_channel_ratio)
export(step_measure_derivative)
export(step_measure_derivative_gap)
export(step_measure_despike)
export(step_measure_detrend)
export(step_measure_dilution_correct)
export(step_measure_drift_linear)
export(step_measure_drift_qc_loess)
export(step_measure_drift_spline)
export(step_measure_emsc)
export(step_measure_exclude)
export(step_measure_filter_fourier)
export(step_measure_impute)
export(step_measure_input_long)
export(step_measure_input_wide)
export(step_measure_integrals)
export(step_measure_interpolate)
export(step_measure_kubelka_munk)
export(step_measure_log)
export(step_measure_map)
export(step_measure_mcr_als)
export(step_measure_moments)
export(step_measure_msc)
export(step_measure_mw_averages)
export(step_measure_mw_distribution)
export(step_measure_mw_fractions)
export(step_measure_normalize_auc)
export(step_measure_normalize_istd)
export(step_measure_normalize_max)
export(step_measure_normalize_peak)
export(step_measure_normalize_range)
export(step_measure_normalize_sum)
export(step_measure_normalize_vector)
export(step_measure_osc)
export(step_measure_output_long)
export(step_measure_output_wide)
export(step_measure_parafac)
export(step_measure_peaks_deconvolve)
export(step_measure_peaks_detect)
export(step_measure_peaks_filter)
export(step_measure_peaks_integrate)
export(step_measure_peaks_properties)
export(step_measure_peaks_to_table)
export(step_measure_qc_bracket)
export(step_measure_qc_outlier)
export(step_measure_qc_saturated)
export(step_measure_qc_snr)
export(step_measure_ratio_reference)
export(step_measure_ratios)
export(step_measure_resample)
export(step_measure_savitzky_golay)
export(step_measure_scale_auto)
export(step_measure_scale_pareto)
export(step_measure_scale_range)
export(step_measure_scale_vast)
export(step_measure_smooth_gaussian)
export(step_measure_smooth_ma)
export(step_measure_smooth_median)
export(step_measure_smooth_wavelet)
export(step_measure_snv)
export(step_measure_standard_addition)
export(step_measure_subtract_blank)
export(step_measure_subtract_reference)
export(step_measure_surrogate_recovery)
export(step_measure_transmittance)
export(step_measure_trim)
export(step_measure_tucker)
export(subtract_rf_baseline)
export(sum_peak_models)
export(tidy)
export(tunable)
export(uncertainty_component)
export(uncertainty_type_a)
export(uncertainty_type_b_expanded)
export(uncertainty_type_b_rectangular)
export(unregister_peak_algorithm)
export(unregister_peak_model)
export(validate_measure)
export(validate_peak_model_params)
export(window_side)
import(recipes)
import(rlang)
importFrom(dplyr,arrange)
importFrom(dplyr,mutate)
importFrom(dplyr,select)
importFrom(generics,augment)
importFrom(generics,glance)
importFrom(generics,tidy)
importFrom(generics,tunable)
importFrom(ggplot2,autoplot)
importFrom(ggplot2,fortify)
importFrom(glue,glue)
importFrom(lifecycle,badge)
importFrom(stats,complete.cases)
importFrom(stats,sd)
importFrom(tibble,tibble)
importFrom(utils,globalVariables)