diff --git a/404.html b/404.html index 9138499..02e0377 100644 --- a/404.html +++ b/404.html @@ -79,7 +79,7 @@
diff --git a/LICENSE-text.html b/LICENSE-text.html index 688e1c9..e03cf31 100644 --- a/LICENSE-text.html +++ b/LICENSE-text.html @@ -731,7 +731,7 @@ diff --git a/articles/data_analysis_omics_using_the_structtoolbox.html b/articles/data_analysis_omics_using_the_structtoolbox.html index 8c521e5..e1a2874 100644 --- a/articles/data_analysis_omics_using_the_structtoolbox.html +++ b/articles/data_analysis_omics_using_the_structtoolbox.html @@ -621,7 +621,7 @@The MTBLS79_DatasetExperiment
object included in the
structToolbox
package is a processed version of the MTBLS79
-dataset available in peak matrix processing (pmp) package.
+dataset available in peak matrix processing (pmp) package.
This vignette describes step by step how the structToolbox
version was created from the pmp
version (i.e. ‘Dataset
7:SFPM’ from the Scientific Data publication - https://doi.org/10.1038/sdata.2014.12).
The “Sacurine” dataset needs to be converted to a
-DatasetExperiment
object. The ropls
+DatasetExperiment
object. The ropls
package provides the data as a list containing a
dataMatrix
, sampleMetadata
and
variableMetadata
.
The third plot coloured by gender (C) is identical to Figure 2 of the
-ropls
+ropls
package vignette. The structToolbox
package provides a
range of PCA-related diagnostic plots, including D-statistic, scree, and
loadings plots. These plots can be used to further explore the variance
@@ -1006,7 +1006,7 @@
The plot is similar to fig.3 of the ropls +
The plot is similar to fig.3 of the ropls
vignette. Differences are due to inverted LV axes, a common occurrence
with the NIPALS algorithm (used by both structToolbox
and
ropls
) which depends on how the algorithm is
@@ -1106,10 +1106,8 @@
## adding rname 'https://github.com/CIMCB/MetabWorkflowTutorial/raw/master/GastricCancer_NMR.xlsx'
-
-X = read.xlsx(path)
+path = bfcrpath(bfc,url)
+X = read.xlsx(path)
# sample meta data
SM=X[,1:4]
@@ -1153,7 +1151,7 @@ Data pre-processing and qual
quality, and to assess the quality of the data in general. In the
Tutorial features with QC-RSD > 20% and where more than 10% of the
features are missing are retained.
-
+
# prepare model sequence
M = rsd_filter(rsd_threshold=20,qc_label='QC',factor_name='Class') +
mv_feature_filter(threshold = 10,method='across',factor_name='Class')
@@ -1189,7 +1187,7 @@ Data pre-processing and qual
The transformed and scaled matrix in then used as input to PCA. Using
struct
we can chain all of these steps into a single model
sequence.
-
+
# prepare the model sequence
M = log_transform(base = 10) +
autoscale() +
@@ -1221,7 +1219,7 @@ Univariate statisticslink).
The QC samples need to be excluded, and the data reduced to only the GC
and HE groups.
-
+
# prepare model
TT = filter_smeta(mode='include',factor_name='Class',levels=c('GC','HE')) +
ttest(alpha=0.05,mtc='fdr',factor_names='Class')
@@ -1263,7 +1261,7 @@ Training and Test setssplit_data
object for random subsampling across
the whole dataset, and stratified_split
for splitting based
on group sizes, which is the approach used by Mendez et al.
-
+
# prepare model
M = stratified_split(p_train=0.75,factor_name='Class')
# apply to filtered data
@@ -1280,9 +1278,9 @@ Training and Test sets## data: 62 rows x 53 columns
## sample_meta: 62 rows x 5 columns
## variable_meta: 53 rows x 1 columns
-
+
cat('\n')
-
+
test = M$testing
test
## A "DatasetExperiment" object
@@ -1305,7 +1303,7 @@ Optimal number of PLS componentsPLSR
model in structToolbox will be used. For speed only 10
bootstrap iterations are used here.
-
+
# scale/transform training data
M = log_transform(base = 10) +
autoscale() +
@@ -1348,7 +1346,7 @@ PLS model evalutation
To evaluate the model for discriminant analysis in structToolbox the
PLSDA
model is appropriate.
-
+
# prepare the discriminant model
P = PLSDA(number_components = 2, factor_name='Class')
@@ -1367,7 +1365,7 @@ PLS model evalutation
plot_grid(g1,g2,g3,align='vh',axis='tblr',nrow=1, labels=c('A','B','C'))
-
+
@@ -1388,7 +1386,7 @@ Permutation testpermutation_test is an iterator object that can be combined
with other iterators and models.
-
+
# model sequence
MS = permutation_test(number_of_permutations = 20,factor_name = 'Class_num') *
kfold_xval(folds = 5,factor_name = 'Class_num') *
@@ -1410,7 +1408,7 @@ PLS projection plots
+
# prepare the discriminant model
P = PLSDA(number_components = 2, factor_name='Class')
@@ -1428,7 +1426,7 @@ PLS feature importance
-
+
# prepare chart
C = pls_vip_plot(ycol = 'HE')
g1 = chart_plot(C,P)
@@ -1476,7 +1474,7 @@ Dataset
+
# summary of DatasetExperiment object
DE
## A "DatasetExperiment" object
@@ -1491,7 +1489,7 @@ Dataset
+
# model sequence and pls model (NB data already centred)
MS = filter_smeta(mode = 'include', levels = c('GC','HE'), factor_name = 'Class') +
PLSDA(factor_name = 'Class',number_components = 2)
@@ -1503,7 +1501,7 @@ DatasetC = pls_scores_plot(factor_name = 'Class')
chart_plot(C,MS[2])
-
+
# new DatasetExperiment object from the PLS scores
DE2 = DatasetExperiment(
data = MS[2]$scores$data,
@@ -1529,7 +1527,7 @@ Basic SVM modelstructToolbox
the SVM
model can be used to
train and apply SVM models. A svm_plot_2d
chart object is
provided for visualisation of boundaries in two dimensions.
-
+
# SVM model
M = SVM(
factor_name = 'Class',
@@ -1554,7 +1552,7 @@ SVM cost function
+
# low cost
M$cost=0.01
M=model_apply(M,DE2)
@@ -1604,7 +1602,7 @@ Kernel functions
-
+
# set a fixed cost for this comparison
M$cost=1
@@ -1660,7 +1658,7 @@ Kernel functions
-
+
# rbf kernel and cost
M$kernel = 'radial'
M$cost = 1
@@ -1736,7 +1734,7 @@ LC-MS-based proteomics datasetgithub and must
be extracted from the zip file prior to data analysis.
-
+
# path to zip
zipfile = "https://raw.github.com/STATegraData/STATegraData/master/Script_STATegra_Proteomics.zip"
@@ -1756,7 +1754,7 @@ LC-MS-based proteomics dataset
+
# extract data matrix
data = all_data[1:2527,51:86]
# shorten sample names
@@ -1807,7 +1805,7 @@ LC-MS-based proteomics dataset## variable_meta: 2527 rows x 3 columns
A number of Reporter genes were included in the study. We plot two of
them here to illustrate some trends in the data.
-
+
# find id of reporters
Ldha = which(DS$variable_meta$Gene.names=='Ldha')
Hk2 = which(DS$variable_meta$Gene.names=='Hk2')
@@ -1827,7 +1825,7 @@ Data transformation
+
# prepare model sequence
M = log_transform(
base=2) +
@@ -1839,7 +1837,7 @@ Data transformation# get transformed data
DST = predicted(M)
The Reporter genes are plotted again for comparison.
-
+
# chart object
C = feature_boxplot(feature_to_plot=Ldha,factor_name='time',label_outliers=FALSE)
g1=chart_plot(C,DST)+ggtitle('Ldha')+ylab('log2(expression)')
@@ -1869,7 +1867,7 @@ Missing value filteringfilter_na_count
and
filter_by_name
objects are working together as a single
filter.
-
+
# build model sequence
M2 = filter_na_count(
threshold=2,
@@ -1904,7 +1902,7 @@ Missing value imputationset_struct_obj
in the global environment, and a
“method_apply” method that implements the imputation.
-
+
# create new imputation object
set_struct_obj(
class_name = 'STATegra_impute1',
@@ -1956,7 +1954,7 @@ Missing value imputation
-
+
# create new imputation object
set_struct_obj(
class_name = 'STATegra_impute2',
@@ -2022,7 +2020,7 @@ Missing value imputationstruct
object. A final filter is
added to remove any feature that has missing values after
imputation.
-
+
# model sequence
M3 = STATegra_impute1(factor_name='treatment',factor_sd='condition') +
STATegra_impute2(factor_name = 'condition') +
@@ -2054,7 +2052,7 @@ Exploratory analysisPCA is used to provide a graphical representation of the data. For
comparison with the outputs from STATegra a filter is included to reduce
the data to include only the treated samples (IKA)
-
+
# model sequence
P = filter_smeta(mode='include',factor_name='treatment',levels='IKA') +
mean_centre() +
@@ -2082,7 +2080,7 @@ LC-MS-based metabolomics datasetThe LC-MS-based metabolomics dataset from the STATegra multi-omics
dataset (see Introduction) can be found on github and must
be extracted from zip file prior to data analysis.
-
+
# path to zip
zipfile = "https://raw.github.com/STATegraData/STATegraData/master/Script_STATegra_Metabolomics.zip"
@@ -2103,7 +2101,7 @@ LC-MS-based metabolomics datasetThe imported data needs to be converted to
DatasetExperiment
format for use with
structToolbox
.
-
+
# extract sample meta data
SM = data[ ,1:8]
@@ -2166,7 +2164,7 @@ Data preprocessingGomez-Cabrero
et al. Some basic processing steps will be applied in order to
generate a valid PCA plot from the biological and QC samples.
-
+
# prepare model sequence
MS = filter_smeta(mode = 'include', levels='QC', factor_name = 'sample_type') +
knn_impute(neighbours=5) +
@@ -2183,7 +2181,7 @@ Exploratory analysis
First we will use PCA to look at the QC samples in order to make an
assessment of the data quality.
-
+
# pca model sequence
M = mean_centre() +
PCA(number_components = 3)
@@ -2201,7 +2199,7 @@ Exploratory analysis
-
+
# prepare model sequence
MS = filter_smeta(
mode = 'include',
@@ -2230,7 +2228,7 @@ Exploratory analysisMS = model_apply(MS, DE)
## Warning in knnimp(x, k, maxmiss = rowmax, maxp = maxp): 4 rows with more than 50 % entries missing;
## mean imputation used for these rows
-
+
# PCA scores plot
C = pca_scores_plot(factor_name = 'sample_type',label_factor = 'order',points_to_label = 'all')
# plot
@@ -2242,7 +2240,7 @@ Exploratory analysis
-
+
# prepare model sequence
MS = filter_smeta(
mode = 'exclude',
@@ -2278,7 +2276,7 @@ Exploratory analysisMS = model_apply(MS, DE)
## Warning in knnimp(x, k, maxmiss = rowmax, maxp = maxp): 2 rows with more than 50 % entries missing;
## mean imputation used for these rows
-
+
# PCA scores plots
C = pca_scores_plot(factor_name = 'sample_type')
# plot
@@ -2289,7 +2287,7 @@ Exploratory analysis
-
+
MS = filter_smeta(
mode = 'exclude',
levels = '12',
@@ -2380,7 +2378,7 @@ Exploratory analysis
-
+
# get the glog scaled data
GL = predicted(MS[11])
@@ -2411,10 +2409,10 @@ Exploratory analysis
Session Info
-
+
-## R version 4.3.2 (2023-10-31)
-## Platform: x86_64-pc-linux-gnu (64-bit)
+## R Under development (unstable) (2024-01-23 r85822)
+## Platform: x86_64-pc-linux-gnu
## Running under: Ubuntu 22.04.3 LTS
##
## Matrix products: default
@@ -2422,10 +2420,12 @@ Session Info## LAPACK: /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblasp-r0.3.20.so; LAPACK version 3.10.0
##
## locale:
-## [1] LC_CTYPE=C.UTF-8 LC_NUMERIC=C LC_TIME=C.UTF-8
-## [4] LC_COLLATE=C.UTF-8 LC_MONETARY=C.UTF-8 LC_MESSAGES=C.UTF-8
-## [7] LC_PAPER=C.UTF-8 LC_NAME=C LC_ADDRESS=C
-## [10] LC_TELEPHONE=C LC_MEASUREMENT=C.UTF-8 LC_IDENTIFICATION=C
+## [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
+## [3] LC_TIME=en_US.UTF-8 LC_COLLATE=en_US.UTF-8
+## [5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
+## [7] LC_PAPER=en_US.UTF-8 LC_NAME=C
+## [9] LC_ADDRESS=C LC_TELEPHONE=C
+## [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
##
## time zone: UTC
## tzcode source: system (glibc)
@@ -2435,69 +2435,69 @@ Session Info##
## other attached packages:
## [1] openxlsx_4.2.5.2 cowplot_1.1.3 gridExtra_2.3
-## [4] ggplot2_3.4.4 BiocFileCache_2.10.1 dbplyr_2.4.0
-## [7] ropls_1.34.0 pmp_1.14.0 structToolbox_1.15.1
-## [10] struct_1.14.0 BiocStyle_2.30.0
+## [4] ggplot2_3.4.4 BiocFileCache_2.11.1 dbplyr_2.4.0
+## [7] ropls_1.35.4 pmp_1.15.0 structToolbox_1.15.1
+## [10] struct_1.15.1 BiocStyle_2.31.0
##
## loaded via a namespace (and not attached):
## [1] DBI_1.2.1 bitops_1.0-7
-## [3] MultiDataSet_1.30.0 rlang_1.1.3
+## [3] MultiDataSet_1.31.0 rlang_1.1.3
## [5] magrittr_2.0.3 e1071_1.7-14
-## [7] matrixStats_1.2.0 compiler_4.3.2
+## [7] matrixStats_1.2.0 compiler_4.4.0
## [9] RSQLite_2.3.5 systemfonts_1.0.5
## [11] vctrs_0.6.5 reshape2_1.4.4
## [13] stringr_1.5.1 pkgconfig_2.0.3
## [15] crayon_1.5.2 fastmap_1.1.1
-## [17] XVector_0.42.0 labeling_0.4.3
+## [17] XVector_0.43.1 labeling_0.4.3
## [19] utf8_1.2.4 rmarkdown_2.25
## [21] itertools_0.1-3 ragg_1.2.7
## [23] bit_4.0.5 purrr_1.0.2
-## [25] xfun_0.41 MultiAssayExperiment_1.28.0
-## [27] randomForest_4.7-1.1 zlibbioc_1.48.0
-## [29] cachem_1.0.8 GenomeInfoDb_1.38.5
+## [25] xfun_0.41 MultiAssayExperiment_1.29.0
+## [27] randomForest_4.7-1.1 zlibbioc_1.49.0
+## [29] cachem_1.0.8 GenomeInfoDb_1.39.5
## [31] jsonlite_1.8.8 progress_1.2.3
## [33] blob_1.2.4 highr_0.10
-## [35] DelayedArray_0.28.0 prettyunits_1.2.0
-## [37] parallel_4.3.2 rols_2.30.0
+## [35] DelayedArray_0.29.0 prettyunits_1.2.0
+## [37] parallel_4.4.0 rols_2.31.0
## [39] R6_2.5.1 bslib_0.6.1
-## [41] stringi_1.8.3 limma_3.58.1
-## [43] GenomicRanges_1.54.1 jquerylib_0.1.4
+## [41] stringi_1.8.3 limma_3.59.1
+## [43] GenomicRanges_1.55.2 jquerylib_0.1.4
## [45] Rcpp_1.0.12 bookdown_0.37
-## [47] SummarizedExperiment_1.32.0 iterators_1.0.14
-## [49] knitr_1.45 IRanges_2.36.0
-## [51] Matrix_1.6-1.1 tidyselect_1.2.0
+## [47] SummarizedExperiment_1.33.3 iterators_1.0.14
+## [49] knitr_1.45 IRanges_2.37.1
+## [51] Matrix_1.6-5 tidyselect_1.2.0
## [53] abind_1.4-5 yaml_2.3.8
## [55] codetools_0.2-19 curl_5.2.0
-## [57] doRNG_1.8.6 lattice_0.21-9
+## [57] doRNG_1.8.6 lattice_0.22-5
## [59] tibble_3.2.1 plyr_1.8.9
-## [61] withr_3.0.0 Biobase_2.62.0
+## [61] withr_3.0.0 Biobase_2.63.0
## [63] evaluate_0.23 ontologyIndex_2.11
## [65] desc_1.4.3 isoband_0.2.7
## [67] proxy_0.4-27 zip_2.3.1
## [69] filelock_1.0.3 pillar_1.9.0
-## [71] BiocManager_1.30.22 MatrixGenerics_1.14.0
+## [71] BiocManager_1.30.22 MatrixGenerics_1.15.0
## [73] rngtools_1.5.2 foreach_1.5.2
-## [75] stats4_4.3.2 generics_0.1.3
-## [77] sp_2.1-2 RCurl_1.98-1.14
-## [79] hms_1.1.3 S4Vectors_0.40.2
+## [75] stats4_4.4.0 generics_0.1.3
+## [77] sp_2.1-3 RCurl_1.98-1.14
+## [79] hms_1.1.3 S4Vectors_0.41.3
## [81] munsell_0.5.0 scales_1.3.0
## [83] calibrate_1.7.7 class_7.3-22
-## [85] glue_1.7.0 tools_4.3.2
-## [87] fs_1.6.3 grid_4.3.2
-## [89] impute_1.76.0 missForest_1.5
+## [85] glue_1.7.0 tools_4.4.0
+## [87] fs_1.6.3 grid_4.4.0
+## [89] impute_1.77.0 missForest_1.5
## [91] colorspace_2.1-0 GenomeInfoDbData_1.2.11
## [93] cli_3.6.2 textshaping_0.3.7
## [95] fansi_1.0.6 viridisLite_0.4.2
-## [97] ggthemes_5.0.0 S4Arrays_1.2.0
+## [97] ggthemes_5.0.0 S4Arrays_1.3.2
## [99] dplyr_1.1.4 pls_2.8-3
-## [101] pcaMethods_1.94.0 gtable_0.3.4
+## [101] pcaMethods_1.95.0 gtable_0.3.4
## [103] sass_0.4.8 digest_0.6.34
-## [105] BiocGenerics_0.48.1 SparseArray_1.2.3
+## [105] BiocGenerics_0.49.1 SparseArray_1.3.3
## [107] farver_2.1.1 memoise_2.0.1
-## [109] htmltools_0.5.7 pkgdown_2.0.7
+## [109] htmltools_0.5.7 pkgdown_2.0.7.9000
## [111] lifecycle_1.0.4 httr_1.4.7
## [113] statmod_1.5.0 bit64_4.0.5
-## [115] qqman_0.1.9 MASS_7.3-60
+## [115] qqman_0.1.9 MASS_7.3-60.2
@@ -2512,7 +2512,7 @@ Session Info
-Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-16-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-16-1.png
index 528d7d0..96655f9 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-16-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-16-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-17-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-17-1.png
index 215114c..6009410 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-17-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-17-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-18-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-18-1.png
index 20dc81d..575b930 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-18-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-18-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-27-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-27-1.png
index 2832b3b..9c89911 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-27-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-27-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-31-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-31-1.png
index 7d8d041..8df4b81 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-31-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-31-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-31-2.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-31-2.png
index 9997d02..61a76c3 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-31-2.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-31-2.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-37-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-37-1.png
index 6645297..cae1108 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-37-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-37-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-38-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-38-1.png
index 8c6bffc..a2705c3 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-38-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-38-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-40-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-40-1.png
index 3f23f95..4148956 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-40-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-40-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-41-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-41-1.png
index b9e4124..deb5b78 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-41-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-41-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-42-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-42-1.png
index 7120c87..078cb21 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-42-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-42-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-43-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-43-1.png
index 5365b25..18de8fd 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-43-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-43-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-46-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-46-1.png
index 9bc5d1d..bc38998 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-46-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-46-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-49-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-49-1.png
index b22c616..7ab5bcf 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-49-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-49-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-52-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-52-1.png
index 3f70958..347b3d1 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-52-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-52-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-53-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-53-1.png
index 0293fac..6c4e1cb 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-53-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-53-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-55-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-55-1.png
index 0904772..05d55dd 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-55-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-55-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-56-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-56-1.png
index ddcc0bc..5281252 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-56-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-56-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-57-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-57-1.png
index 0cde68f..bf72554 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-57-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-57-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-60-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-60-1.png
index df3ede4..2d19918 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-60-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-60-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-61-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-61-1.png
index 3d28ac8..624301d 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-61-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-61-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-62-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-62-1.png
index f01ada5..da38bf7 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-62-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-62-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-63-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-63-1.png
index 2a08e6b..017d646 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-63-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-63-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-64-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-64-1.png
index 426b7fe..fc63271 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-64-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-64-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-67-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-67-1.png
index 9ec65f7..716e020 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-67-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-67-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-69-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-69-1.png
index eb39255..166f848 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-69-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-69-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-74-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-74-1.png
index 224d94c..d4e820d 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-74-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-74-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-75-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-75-1.png
index e8dd4a0..06f5400 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-75-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-75-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-79-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-79-1.png
index 92c825d..2c68352 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-79-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-79-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-80-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-80-1.png
index cfe5ec6..0932bc4 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-80-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-80-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-81-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-81-1.png
index 03682fd..c217aa2 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-81-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-81-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-82-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-82-1.png
index c457bfa..28231fb 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-82-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-82-1.png differ
diff --git a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-83-1.png b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-83-1.png
index f5a670a..8ec93e1 100644
Binary files a/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-83-1.png and b/articles/data_analysis_omics_using_the_structtoolbox_files/figure-html/unnamed-chunk-83-1.png differ
diff --git a/articles/index.html b/articles/index.html
index d3e8119..46ece3c 100644
--- a/articles/index.html
+++ b/articles/index.html
@@ -61,7 +61,7 @@ All vignettes
diff --git a/authors.html b/authors.html
index e35bc1e..188bf0b 100644
--- a/authors.html
+++ b/authors.html
@@ -84,7 +84,7 @@ Citation
diff --git a/index.html b/index.html
index a6fca14..cb604a3 100644
--- a/index.html
+++ b/index.html
@@ -5,38 +5,14 @@
-
+
Data processing & analysis tools for Metabolomics and other omics • structToolbox
-
+
@@ -159,7 +135,7 @@ Dev status
diff --git a/pkgdown.yml b/pkgdown.yml
index 62a0c6e..3ba4b63 100644
--- a/pkgdown.yml
+++ b/pkgdown.yml
@@ -1,9 +1,9 @@
-pandoc: 2.19.2
-pkgdown: 2.0.7
-pkgdown_sha: ~
+pandoc: 3.1.1
+pkgdown: 2.0.7.9000
+pkgdown_sha: 548a9493b72ff93d3ed8392d4ad30b77d8b15fa5
articles:
data_analysis_omics_using_the_structtoolbox: data_analysis_omics_using_the_structtoolbox.html
-last_built: 2024-01-31T10:50Z
+last_built: 2024-01-31T11:32Z
urls:
reference: https://computational-metabolomics.github.io/structToolbox/reference
article: https://computational-metabolomics.github.io/structToolbox/articles
diff --git a/reference/ANOVA.html b/reference/ANOVA.html
index 732512a..d6a5a00 100644
--- a/reference/ANOVA.html
+++ b/reference/ANOVA.html
@@ -129,7 +129,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/AUC.html b/reference/AUC.html
index a0fe80f..9f0a6dd 100644
--- a/reference/AUC.html
+++ b/reference/AUC.html
@@ -122,7 +122,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/DFA.html b/reference/DFA.html
index e0dbbc8..6d3595f 100644
--- a/reference/DFA.html
+++ b/reference/DFA.html
@@ -108,7 +108,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/DatasetExperiment_boxplot-1.png b/reference/DatasetExperiment_boxplot-1.png
index 618b698..3a96ec6 100644
Binary files a/reference/DatasetExperiment_boxplot-1.png and b/reference/DatasetExperiment_boxplot-1.png differ
diff --git a/reference/DatasetExperiment_boxplot.html b/reference/DatasetExperiment_boxplot.html
index 27139d3..284f9f3 100644
--- a/reference/DatasetExperiment_boxplot.html
+++ b/reference/DatasetExperiment_boxplot.html
@@ -132,7 +132,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/DatasetExperiment_dist-1.png b/reference/DatasetExperiment_dist-1.png
index 2528cd3..c6c042b 100644
Binary files a/reference/DatasetExperiment_dist-1.png and b/reference/DatasetExperiment_dist-1.png differ
diff --git a/reference/DatasetExperiment_dist.html b/reference/DatasetExperiment_dist.html
index 44dd070..3e871a4 100644
--- a/reference/DatasetExperiment_dist.html
+++ b/reference/DatasetExperiment_dist.html
@@ -111,7 +111,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/DatasetExperiment_factor_boxplot-1.png b/reference/DatasetExperiment_factor_boxplot-1.png
index 5ab61ca..ccea6eb 100644
Binary files a/reference/DatasetExperiment_factor_boxplot-1.png and b/reference/DatasetExperiment_factor_boxplot-1.png differ
diff --git a/reference/DatasetExperiment_factor_boxplot.html b/reference/DatasetExperiment_factor_boxplot.html
index 214cfe7..76216b7 100644
--- a/reference/DatasetExperiment_factor_boxplot.html
+++ b/reference/DatasetExperiment_factor_boxplot.html
@@ -108,7 +108,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/DatasetExperiment_heatmap-1.png b/reference/DatasetExperiment_heatmap-1.png
index 1ef43bf..f879f9a 100644
Binary files a/reference/DatasetExperiment_heatmap-1.png and b/reference/DatasetExperiment_heatmap-1.png differ
diff --git a/reference/DatasetExperiment_heatmap.html b/reference/DatasetExperiment_heatmap.html
index 34d2d53..2e06c89 100644
--- a/reference/DatasetExperiment_heatmap.html
+++ b/reference/DatasetExperiment_heatmap.html
@@ -113,7 +113,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/HCA.html b/reference/HCA.html
index 6d957d1..f80e788 100644
--- a/reference/HCA.html
+++ b/reference/HCA.html
@@ -143,7 +143,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/HSD.html b/reference/HSD.html
index 70dc1c6..3b36d8f 100644
--- a/reference/HSD.html
+++ b/reference/HSD.html
@@ -128,7 +128,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/HSDEM.html b/reference/HSDEM.html
index 5977be3..4553a5e 100644
--- a/reference/HSDEM.html
+++ b/reference/HSDEM.html
@@ -130,7 +130,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/MTBLS79_DatasetExperiment.html b/reference/MTBLS79_DatasetExperiment.html
index d7d5ba0..b4aa1a6 100644
--- a/reference/MTBLS79_DatasetExperiment.html
+++ b/reference/MTBLS79_DatasetExperiment.html
@@ -116,7 +116,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/OPLSDA.html b/reference/OPLSDA.html
index 554ca0b..6686024 100644
--- a/reference/OPLSDA.html
+++ b/reference/OPLSDA.html
@@ -104,7 +104,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/OPLSR.html b/reference/OPLSR.html
index bf8ae9a..a972c7c 100644
--- a/reference/OPLSR.html
+++ b/reference/OPLSR.html
@@ -104,7 +104,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/PCA.html b/reference/PCA.html
index 34b4fa8..2f9cd79 100644
--- a/reference/PCA.html
+++ b/reference/PCA.html
@@ -95,7 +95,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/PLSDA.html b/reference/PLSDA.html
index e46e8c3..41df2d1 100644
--- a/reference/PLSDA.html
+++ b/reference/PLSDA.html
@@ -124,7 +124,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/PLSR.html b/reference/PLSR.html
index 0de3bdf..006fc15 100644
--- a/reference/PLSR.html
+++ b/reference/PLSR.html
@@ -111,7 +111,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/Rplot002.png b/reference/Rplot002.png
index 2d84b10..0b9b543 100644
Binary files a/reference/Rplot002.png and b/reference/Rplot002.png differ
diff --git a/reference/SVM.html b/reference/SVM.html
index a1c340f..ab5682a 100644
--- a/reference/SVM.html
+++ b/reference/SVM.html
@@ -154,7 +154,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/as_data_frame.html b/reference/as_data_frame.html
index f899892..24614cc 100644
--- a/reference/as_data_frame.html
+++ b/reference/as_data_frame.html
@@ -94,7 +94,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/autoscale.html b/reference/autoscale.html
index c5d3615..bdbcd1a 100644
--- a/reference/autoscale.html
+++ b/reference/autoscale.html
@@ -102,7 +102,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/balanced_accuracy.html b/reference/balanced_accuracy.html
index ef801da..73e176a 100644
--- a/reference/balanced_accuracy.html
+++ b/reference/balanced_accuracy.html
@@ -98,7 +98,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/blank_filter.html b/reference/blank_filter.html
index 35f121d..0d85759 100644
--- a/reference/blank_filter.html
+++ b/reference/blank_filter.html
@@ -139,7 +139,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/blank_filter_hist.html b/reference/blank_filter_hist.html
index a3b41ef..787a562 100644
--- a/reference/blank_filter_hist.html
+++ b/reference/blank_filter_hist.html
@@ -95,7 +95,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/bootstrap.html b/reference/bootstrap.html
index 78b084f..7174ed9 100644
--- a/reference/bootstrap.html
+++ b/reference/bootstrap.html
@@ -101,7 +101,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/calculate.html b/reference/calculate.html
index 06ef8d2..f66893f 100644
--- a/reference/calculate.html
+++ b/reference/calculate.html
@@ -107,7 +107,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/chart_plot.html b/reference/chart_plot.html
index 76d5551..ede9b9c 100644
--- a/reference/chart_plot.html
+++ b/reference/chart_plot.html
@@ -250,7 +250,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/classical_lsq.html b/reference/classical_lsq.html
index 8363e91..52d44af 100644
--- a/reference/classical_lsq.html
+++ b/reference/classical_lsq.html
@@ -118,7 +118,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/compare_dist-1.png b/reference/compare_dist-1.png
index 7c438f5..d5678d0 100644
Binary files a/reference/compare_dist-1.png and b/reference/compare_dist-1.png differ
diff --git a/reference/compare_dist.html b/reference/compare_dist.html
index ca3ddc9..c58ecba 100644
--- a/reference/compare_dist.html
+++ b/reference/compare_dist.html
@@ -120,7 +120,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/confounders_clsq.html b/reference/confounders_clsq.html
index 1de6c05..78f893d 100644
--- a/reference/confounders_clsq.html
+++ b/reference/confounders_clsq.html
@@ -133,7 +133,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
diff --git a/reference/confounders_lsq_barchart-1.png b/reference/confounders_lsq_barchart-1.png
index a0668e3..2cfc060 100644
Binary files a/reference/confounders_lsq_barchart-1.png and b/reference/confounders_lsq_barchart-1.png differ
diff --git a/reference/confounders_lsq_barchart.html b/reference/confounders_lsq_barchart.html
index 45e280d..7353505 100644
--- a/reference/confounders_lsq_barchart.html
+++ b/reference/confounders_lsq_barchart.html
@@ -115,7 +115,7 @@ Examples
- Site built with pkgdown 2.0.7.
+ Site built with pkgdown 2.0.7.9000.
Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/constant_sum_norm.html b/reference/constant_sum_norm.html index 1a62bcd..f73afbf 100644 --- a/reference/constant_sum_norm.html +++ b/reference/constant_sum_norm.html @@ -97,7 +97,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/corr_coef.html b/reference/corr_coef.html index 9098a2a..e9af9b1 100644 --- a/reference/corr_coef.html +++ b/reference/corr_coef.html @@ -153,7 +153,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/dfa_scores_plot-1.png b/reference/dfa_scores_plot-1.png index 6682fa8..1f52534 100644 Binary files a/reference/dfa_scores_plot-1.png and b/reference/dfa_scores_plot-1.png differ diff --git a/reference/dfa_scores_plot.html b/reference/dfa_scores_plot.html index c6fec04..1a4095b 100644 --- a/reference/dfa_scores_plot.html +++ b/reference/dfa_scores_plot.html @@ -186,7 +186,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/dratio_filter.html b/reference/dratio_filter.html index cc222c6..eca4708 100644 --- a/reference/dratio_filter.html +++ b/reference/dratio_filter.html @@ -137,7 +137,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/equal_split.html b/reference/equal_split.html index f3a321c..0e4563e 100644 --- a/reference/equal_split.html +++ b/reference/equal_split.html @@ -103,7 +103,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/feature_boxplot.html b/reference/feature_boxplot.html index 0d60242..c51e60c 100644 --- a/reference/feature_boxplot.html +++ b/reference/feature_boxplot.html @@ -153,7 +153,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/feature_profile-1.png b/reference/feature_profile-1.png index 1547ec8..5819df5 100644 Binary files a/reference/feature_profile-1.png and b/reference/feature_profile-1.png differ diff --git a/reference/feature_profile.html b/reference/feature_profile.html index bcba429..2611c98 100644 --- a/reference/feature_profile.html +++ b/reference/feature_profile.html @@ -143,7 +143,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/feature_profile_array-1.png b/reference/feature_profile_array-1.png index 4135ef8..6d07f28 100644 Binary files a/reference/feature_profile_array-1.png and b/reference/feature_profile_array-1.png differ diff --git a/reference/feature_profile_array.html b/reference/feature_profile_array.html index 0f396ff..9b6397f 100644 --- a/reference/feature_profile_array.html +++ b/reference/feature_profile_array.html @@ -152,7 +152,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/filter_by_name.html b/reference/filter_by_name.html index eae0444..167b506 100644 --- a/reference/filter_by_name.html +++ b/reference/filter_by_name.html @@ -108,7 +108,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/filter_na_count.html b/reference/filter_na_count.html index c77e785..43e3386 100644 --- a/reference/filter_na_count.html +++ b/reference/filter_na_count.html @@ -103,7 +103,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/filter_smeta.html b/reference/filter_smeta.html index 43ecb7b..babb03c 100644 --- a/reference/filter_smeta.html +++ b/reference/filter_smeta.html @@ -110,7 +110,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/fisher_exact.html b/reference/fisher_exact.html index d605d84..515c598 100644 --- a/reference/fisher_exact.html +++ b/reference/fisher_exact.html @@ -124,7 +124,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/fold_change.html b/reference/fold_change.html index 3f52964..a5e05c9 100644 --- a/reference/fold_change.html +++ b/reference/fold_change.html @@ -148,7 +148,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/fold_change_int.html b/reference/fold_change_int.html index 0a261a6..47b10fc 100644 --- a/reference/fold_change_int.html +++ b/reference/fold_change_int.html @@ -139,7 +139,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/fold_change_plot.html b/reference/fold_change_plot.html index 754ea38..e71bcff 100644 --- a/reference/fold_change_plot.html +++ b/reference/fold_change_plot.html @@ -108,7 +108,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/forward_selection_by_rank.html b/reference/forward_selection_by_rank.html index 34d451a..c233232 100644 --- a/reference/forward_selection_by_rank.html +++ b/reference/forward_selection_by_rank.html @@ -142,7 +142,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/fs_line-1.png b/reference/fs_line-1.png index f9b4191..020cc9b 100644 Binary files a/reference/fs_line-1.png and b/reference/fs_line-1.png differ diff --git a/reference/fs_line.html b/reference/fs_line.html index ed0c754..1af2888 100644 --- a/reference/fs_line.html +++ b/reference/fs_line.html @@ -119,7 +119,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/glog_opt_plot-1.png b/reference/glog_opt_plot-1.png index e077e99..ca49599 100644 Binary files a/reference/glog_opt_plot-1.png and b/reference/glog_opt_plot-1.png differ diff --git a/reference/glog_opt_plot.html b/reference/glog_opt_plot.html index 00d74ac..418b20e 100644 --- a/reference/glog_opt_plot.html +++ b/reference/glog_opt_plot.html @@ -118,7 +118,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/glog_transform.html b/reference/glog_transform.html index ef61abb..d536f88 100644 --- a/reference/glog_transform.html +++ b/reference/glog_transform.html @@ -128,7 +128,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/grid_search_1d.html b/reference/grid_search_1d.html index ac1add8..b097e91 100644 --- a/reference/grid_search_1d.html +++ b/reference/grid_search_1d.html @@ -142,7 +142,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/gs_line.html b/reference/gs_line.html index 83137b3..7b2fc04 100644 --- a/reference/gs_line.html +++ b/reference/gs_line.html @@ -95,7 +95,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/hca_dendrogram.html b/reference/hca_dendrogram.html index bce5311..c22ec6d 100644 --- a/reference/hca_dendrogram.html +++ b/reference/hca_dendrogram.html @@ -105,7 +105,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/index.html b/reference/index.html index 27f1f83..847a636 100644 --- a/reference/index.html +++ b/reference/index.html @@ -656,7 +656,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/kfold_xval.html b/reference/kfold_xval.html index 5affc1d..f3d44c2 100644 --- a/reference/kfold_xval.html +++ b/reference/kfold_xval.html @@ -118,7 +118,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/kfoldxcv_grid-1.png b/reference/kfoldxcv_grid-1.png index ae6d06f..21f3ca7 100644 Binary files a/reference/kfoldxcv_grid-1.png and b/reference/kfoldxcv_grid-1.png differ diff --git a/reference/kfoldxcv_grid.html b/reference/kfoldxcv_grid.html index 590541d..5ddb97b 100644 --- a/reference/kfoldxcv_grid.html +++ b/reference/kfoldxcv_grid.html @@ -114,7 +114,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/kfoldxcv_metric.html b/reference/kfoldxcv_metric.html index e7e7fe3..96954b5 100644 --- a/reference/kfoldxcv_metric.html +++ b/reference/kfoldxcv_metric.html @@ -95,7 +95,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/knn_impute.html b/reference/knn_impute.html index 3a52c62..50dfed0 100644 --- a/reference/knn_impute.html +++ b/reference/knn_impute.html @@ -128,7 +128,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/kw_p_hist.html b/reference/kw_p_hist.html index 5db4d5d..deb1fc1 100644 --- a/reference/kw_p_hist.html +++ b/reference/kw_p_hist.html @@ -95,7 +95,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/kw_rank_sum.html b/reference/kw_rank_sum.html index 2e2f0c0..442b52d 100644 --- a/reference/kw_rank_sum.html +++ b/reference/kw_rank_sum.html @@ -111,7 +111,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/linear_model.html b/reference/linear_model.html index 8d8a754..17a8172 100644 --- a/reference/linear_model.html +++ b/reference/linear_model.html @@ -122,7 +122,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/log_transform.html b/reference/log_transform.html index 2d7b22f..55130e1 100644 --- a/reference/log_transform.html +++ b/reference/log_transform.html @@ -97,7 +97,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/mean_centre.html b/reference/mean_centre.html index 7e63a07..372d9ca 100644 --- a/reference/mean_centre.html +++ b/reference/mean_centre.html @@ -99,7 +99,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/mean_of_medians.html b/reference/mean_of_medians.html index 0b59a62..b6254f4 100644 --- a/reference/mean_of_medians.html +++ b/reference/mean_of_medians.html @@ -98,7 +98,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/mixed_effect.html b/reference/mixed_effect.html index 1252949..d3b9761 100644 --- a/reference/mixed_effect.html +++ b/reference/mixed_effect.html @@ -139,7 +139,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/model_apply.html b/reference/model_apply.html index a665460..7cd2243 100644 --- a/reference/model_apply.html +++ b/reference/model_apply.html @@ -182,7 +182,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/model_predict.html b/reference/model_predict.html index 58308ce..10887e5 100644 --- a/reference/model_predict.html +++ b/reference/model_predict.html @@ -156,7 +156,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/model_reverse.html b/reference/model_reverse.html index 52fdcb5..b99643c 100644 --- a/reference/model_reverse.html +++ b/reference/model_reverse.html @@ -93,7 +93,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/model_train.html b/reference/model_train.html index bf6de04..fde1dca 100644 --- a/reference/model_train.html +++ b/reference/model_train.html @@ -153,7 +153,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/mv_boxplot-1.png b/reference/mv_boxplot-1.png index 3c58d95..5533a62 100644 Binary files a/reference/mv_boxplot-1.png and b/reference/mv_boxplot-1.png differ diff --git a/reference/mv_boxplot.html b/reference/mv_boxplot.html index a86f350..3bbc2f8 100644 --- a/reference/mv_boxplot.html +++ b/reference/mv_boxplot.html @@ -131,7 +131,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/mv_feature_filter.html b/reference/mv_feature_filter.html index c5f4f55..3b138ae 100644 --- a/reference/mv_feature_filter.html +++ b/reference/mv_feature_filter.html @@ -134,7 +134,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/mv_feature_filter_hist.html b/reference/mv_feature_filter_hist.html index 0049e5e..f159c1c 100644 --- a/reference/mv_feature_filter_hist.html +++ b/reference/mv_feature_filter_hist.html @@ -95,7 +95,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/mv_histogram-1.png b/reference/mv_histogram-1.png index 20a23c7..780262a 100644 Binary files a/reference/mv_histogram-1.png and b/reference/mv_histogram-1.png differ diff --git a/reference/mv_histogram.html b/reference/mv_histogram.html index 2fdc086..a970260 100644 --- a/reference/mv_histogram.html +++ b/reference/mv_histogram.html @@ -118,7 +118,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/mv_sample_filter.html b/reference/mv_sample_filter.html index 3a6dee5..33ea9de 100644 --- a/reference/mv_sample_filter.html +++ b/reference/mv_sample_filter.html @@ -107,7 +107,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/mv_sample_filter_hist.html b/reference/mv_sample_filter_hist.html index c2aac73..8ac7cc0 100644 --- a/reference/mv_sample_filter_hist.html +++ b/reference/mv_sample_filter_hist.html @@ -95,7 +95,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/nroot_transform.html b/reference/nroot_transform.html index a0a0840..8dcb96f 100644 --- a/reference/nroot_transform.html +++ b/reference/nroot_transform.html @@ -96,7 +96,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/ontology_cache.html b/reference/ontology_cache.html index 1f38a25..f9bdfe5 100644 --- a/reference/ontology_cache.html +++ b/reference/ontology_cache.html @@ -85,7 +85,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/pairs_filter.html b/reference/pairs_filter.html index 61a12e5..f23f0a6 100644 --- a/reference/pairs_filter.html +++ b/reference/pairs_filter.html @@ -102,7 +102,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/pareto_scale.html b/reference/pareto_scale.html index 21ad654..a347c61 100644 --- a/reference/pareto_scale.html +++ b/reference/pareto_scale.html @@ -94,7 +94,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/pca_biplot.html b/reference/pca_biplot.html index 44b8a41..4e3df74 100644 --- a/reference/pca_biplot.html +++ b/reference/pca_biplot.html @@ -140,7 +140,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/pca_correlation_plot.html b/reference/pca_correlation_plot.html index 87dcfbb..d21b6ae 100644 --- a/reference/pca_correlation_plot.html +++ b/reference/pca_correlation_plot.html @@ -100,7 +100,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/pca_dstat_plot.html b/reference/pca_dstat_plot.html index 1040eba..c6d4580 100644 --- a/reference/pca_dstat_plot.html +++ b/reference/pca_dstat_plot.html @@ -105,7 +105,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/pca_loadings_plot.html b/reference/pca_loadings_plot.html index 2661daa..9d69bff 100644 --- a/reference/pca_loadings_plot.html +++ b/reference/pca_loadings_plot.html @@ -120,7 +120,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/pca_scores_plot-1.png b/reference/pca_scores_plot-1.png index a9cce97..0ea2c7c 100644 Binary files a/reference/pca_scores_plot-1.png and b/reference/pca_scores_plot-1.png differ diff --git a/reference/pca_scores_plot.html b/reference/pca_scores_plot.html index 8a4d5a7..82142d2 100644 --- a/reference/pca_scores_plot.html +++ b/reference/pca_scores_plot.html @@ -177,7 +177,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/pca_scree_plot.html b/reference/pca_scree_plot.html index 889820f..18e86fd 100644 --- a/reference/pca_scree_plot.html +++ b/reference/pca_scree_plot.html @@ -103,7 +103,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/permutation_test.html b/reference/permutation_test.html index 9c545a1..c7e9745 100644 --- a/reference/permutation_test.html +++ b/reference/permutation_test.html @@ -101,7 +101,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/permutation_test_plot.html b/reference/permutation_test_plot.html index 11fc3fa..0ed35db 100644 --- a/reference/permutation_test_plot.html +++ b/reference/permutation_test_plot.html @@ -92,7 +92,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/permute_sample_order.html b/reference/permute_sample_order.html index 3b615e9..6f7d1f2 100644 --- a/reference/permute_sample_order.html +++ b/reference/permute_sample_order.html @@ -96,7 +96,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/pls_regcoeff_plot-1.png b/reference/pls_regcoeff_plot-1.png index caedbeb..3ffe620 100644 Binary files a/reference/pls_regcoeff_plot-1.png and b/reference/pls_regcoeff_plot-1.png differ diff --git a/reference/pls_regcoeff_plot.html b/reference/pls_regcoeff_plot.html index a8697af..c0bffc7 100644 --- a/reference/pls_regcoeff_plot.html +++ b/reference/pls_regcoeff_plot.html @@ -126,7 +126,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/pls_scores_plot-1.png b/reference/pls_scores_plot-1.png index be41e96..56c03d4 100644 Binary files a/reference/pls_scores_plot-1.png and b/reference/pls_scores_plot-1.png differ diff --git a/reference/pls_scores_plot.html b/reference/pls_scores_plot.html index b57ee1c..639371a 100644 --- a/reference/pls_scores_plot.html +++ b/reference/pls_scores_plot.html @@ -193,7 +193,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/pls_vip_plot-1.png b/reference/pls_vip_plot-1.png index c267dda..dccdc68 100644 Binary files a/reference/pls_vip_plot-1.png and b/reference/pls_vip_plot-1.png differ diff --git a/reference/pls_vip_plot.html b/reference/pls_vip_plot.html index 18af1e5..a5cb71c 100644 --- a/reference/pls_vip_plot.html +++ b/reference/pls_vip_plot.html @@ -125,7 +125,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/plsda_feature_importance_plot-1.png b/reference/plsda_feature_importance_plot-1.png index 7b85962..91a070c 100644 Binary files a/reference/plsda_feature_importance_plot-1.png and b/reference/plsda_feature_importance_plot-1.png differ diff --git a/reference/plsda_feature_importance_plot.html b/reference/plsda_feature_importance_plot.html index 0778340..ae5149e 100644 --- a/reference/plsda_feature_importance_plot.html +++ b/reference/plsda_feature_importance_plot.html @@ -136,7 +136,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/plsda_predicted_plot-1.png b/reference/plsda_predicted_plot-1.png index 6a91e29..a7a6b11 100644 Binary files a/reference/plsda_predicted_plot-1.png and b/reference/plsda_predicted_plot-1.png differ diff --git a/reference/plsda_predicted_plot.html b/reference/plsda_predicted_plot.html index 82f3cfc..25c0ef1 100644 --- a/reference/plsda_predicted_plot.html +++ b/reference/plsda_predicted_plot.html @@ -133,7 +133,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/plsda_roc_plot-1.png b/reference/plsda_roc_plot-1.png index f4b0553..1f628fa 100644 Binary files a/reference/plsda_roc_plot-1.png and b/reference/plsda_roc_plot-1.png differ diff --git a/reference/plsda_roc_plot.html b/reference/plsda_roc_plot.html index fddfaf5..f78b4cc 100644 --- a/reference/plsda_roc_plot.html +++ b/reference/plsda_roc_plot.html @@ -125,7 +125,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/plsr_cook_dist.html b/reference/plsr_cook_dist.html index f185321..312d2f4 100644 --- a/reference/plsr_cook_dist.html +++ b/reference/plsr_cook_dist.html @@ -100,7 +100,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/plsr_prediction_plot.html b/reference/plsr_prediction_plot.html index bf06093..221fc82 100644 --- a/reference/plsr_prediction_plot.html +++ b/reference/plsr_prediction_plot.html @@ -100,7 +100,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/plsr_qq_plot.html b/reference/plsr_qq_plot.html index e108345..3763f9b 100644 --- a/reference/plsr_qq_plot.html +++ b/reference/plsr_qq_plot.html @@ -100,7 +100,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/plsr_residual_hist.html b/reference/plsr_residual_hist.html index 1d57f7c..912714d 100644 --- a/reference/plsr_residual_hist.html +++ b/reference/plsr_residual_hist.html @@ -100,7 +100,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/pqn_norm.html b/reference/pqn_norm.html index 72d6126..1bcba4d 100644 --- a/reference/pqn_norm.html +++ b/reference/pqn_norm.html @@ -145,7 +145,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/pqn_norm_hist.html b/reference/pqn_norm_hist.html index 2ba8a5d..554cc29 100644 --- a/reference/pqn_norm_hist.html +++ b/reference/pqn_norm_hist.html @@ -95,7 +95,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/prop_na.html b/reference/prop_na.html index ad82ede..126eca2 100644 --- a/reference/prop_na.html +++ b/reference/prop_na.html @@ -111,7 +111,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/r_squared.html b/reference/r_squared.html index 095af4e..d40d7f8 100644 --- a/reference/r_squared.html +++ b/reference/r_squared.html @@ -95,7 +95,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/resample.html b/reference/resample.html index 36e97f4..9b5ed00 100644 --- a/reference/resample.html +++ b/reference/resample.html @@ -130,7 +130,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/resample_chart.html b/reference/resample_chart.html index d8a9a27..db72e4e 100644 --- a/reference/resample_chart.html +++ b/reference/resample_chart.html @@ -92,7 +92,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/rsd_filter.html b/reference/rsd_filter.html index 9723d56..a7e5075 100644 --- a/reference/rsd_filter.html +++ b/reference/rsd_filter.html @@ -118,7 +118,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/rsd_filter_hist.html b/reference/rsd_filter_hist.html index 641d53f..f56fb5b 100644 --- a/reference/rsd_filter_hist.html +++ b/reference/rsd_filter_hist.html @@ -96,7 +96,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/run.html b/reference/run.html index 9a85f52..356779a 100644 --- a/reference/run.html +++ b/reference/run.html @@ -125,7 +125,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/sb_corr.html b/reference/sb_corr.html index 23b422e..1b79197 100644 --- a/reference/sb_corr.html +++ b/reference/sb_corr.html @@ -160,7 +160,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/scatter_chart-1.png b/reference/scatter_chart-1.png index 6dc3d75..da33b4f 100644 Binary files a/reference/scatter_chart-1.png and b/reference/scatter_chart-1.png differ diff --git a/reference/scatter_chart.html b/reference/scatter_chart.html index ab9ab89..41c52c5 100644 --- a/reference/scatter_chart.html +++ b/reference/scatter_chart.html @@ -174,7 +174,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/split_data.html b/reference/split_data.html index 1b9b85a..3c22f37 100644 --- a/reference/split_data.html +++ b/reference/split_data.html @@ -97,7 +97,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/stratified_split.html b/reference/stratified_split.html index efb224a..11cbd53 100644 --- a/reference/stratified_split.html +++ b/reference/stratified_split.html @@ -104,7 +104,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/structToolbox.html b/reference/structToolbox.html index aa0cec0..66fb5e9 100644 --- a/reference/structToolbox.html +++ b/reference/structToolbox.html @@ -62,7 +62,7 @@ diff --git a/reference/svm_plot_2d-1.png b/reference/svm_plot_2d-1.png index d908bab..f1de69a 100644 Binary files a/reference/svm_plot_2d-1.png and b/reference/svm_plot_2d-1.png differ diff --git a/reference/svm_plot_2d.html b/reference/svm_plot_2d.html index 6e2998b..6d23abb 100644 --- a/reference/svm_plot_2d.html +++ b/reference/svm_plot_2d.html @@ -125,7 +125,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/tSNE.html b/reference/tSNE.html index eabb878..041630c 100644 --- a/reference/tSNE.html +++ b/reference/tSNE.html @@ -152,7 +152,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/tSNE_scatter.html b/reference/tSNE_scatter.html index 1a8f889..594230f 100644 --- a/reference/tSNE_scatter.html +++ b/reference/tSNE_scatter.html @@ -115,7 +115,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/tic_chart-1.png b/reference/tic_chart-1.png index 474ea6a..f045475 100644 Binary files a/reference/tic_chart-1.png and b/reference/tic_chart-1.png differ diff --git a/reference/tic_chart.html b/reference/tic_chart.html index 0ef02ff..659717b 100644 --- a/reference/tic_chart.html +++ b/reference/tic_chart.html @@ -115,7 +115,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/ttest.html b/reference/ttest.html index fedeaab..c329098 100644 --- a/reference/ttest.html +++ b/reference/ttest.html @@ -141,7 +141,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/vec_norm.html b/reference/vec_norm.html index 1a0b671..04e30c8 100644 --- a/reference/vec_norm.html +++ b/reference/vec_norm.html @@ -93,7 +93,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/wilcox_p_hist.html b/reference/wilcox_p_hist.html index 005c999..d862e44 100644 --- a/reference/wilcox_p_hist.html +++ b/reference/wilcox_p_hist.html @@ -96,7 +96,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/reference/wilcox_test.html b/reference/wilcox_test.html index cd0eaa5..a2a43b2 100644 --- a/reference/wilcox_test.html +++ b/reference/wilcox_test.html @@ -134,7 +134,7 @@Site built with pkgdown 2.0.7.
+Site built with pkgdown 2.0.7.9000.
diff --git a/search.json b/search.json index 4d4f7d8..afc597f 100644 --- a/search.json +++ b/search.json @@ -1 +1 @@ -[{"path":"https://computational-metabolomics.github.io/structToolbox/articles/data_analysis_omics_using_the_structtoolbox.html","id":"introduction","dir":"Articles","previous_headings":"","what":"Introduction","title":"Data analysis of metabolomics and other omics datasets using the structToolbox","text":"‘structToolbox’ includes extensive set data (pre-)processing analysis tools metabolomics omics, strong emphasis statistics machine learning. methods tools implemented using class-based templates available via struct (Statistics R Using Class-based Templates) package. aim vignette introduce reader basic advanced structToolbox-based operations implementations, use struct objects, getting/setting methods/parameters, building workflows analysis mass spectrometry (MS) nuclear magnetic resonance (NMR)-based Metabolomics proteomics datasets. workflows demonstrated include wide range methods tools including pre-processing filtering, normalisation scaling, followed univariate /multivariate statistics, machine learning approaches.","code":""},{"path":"https://computational-metabolomics.github.io/structToolbox/articles/data_analysis_omics_using_the_structtoolbox.html","id":"getting-started","dir":"Articles","previous_headings":"","what":"Getting started","title":"Data analysis of metabolomics and other omics datasets using the structToolbox","text":"latest version structToolbox compatible current R version can installed using BiocManager. number additional packages needed vignette.","code":"# install BiocManager if not present if (!requireNamespace(\"BiocManager\", quietly = TRUE)) install.packages(\"BiocManager\") # install structToolbox and dependencies BiocManager::install(\"structToolbox\") ## install additional bioc packages for vignette if needed #BiocManager::install(c('pmp', 'ropls', 'BiocFileCache')) ## install additional CRAN packages if needed #install.packages(c('cowplot', 'openxlsx')) suppressPackageStartupMessages({ # Bioconductor packages library(structToolbox) library(pmp) library(ropls) library(BiocFileCache) # CRAN libraries library(ggplot2) library(gridExtra) library(cowplot) library(openxlsx) }) # use the BiocFileCache bfc <- BiocFileCache(ask = FALSE)"},{"path":[]},{"path":"https://computational-metabolomics.github.io/structToolbox/articles/data_analysis_omics_using_the_structtoolbox.html","id":"introduction-1","dir":"Articles","previous_headings":"Introduction to struct objects, including models, model sequences, model charts and ontology.","what":"Introduction","title":"Data analysis of metabolomics and other omics datasets using the structToolbox","text":"PCA (Principal Component Analysis) PLS (Partial Least Squares) commonly applied methods exploring analysing multivariate datasets. use two statistical methods demonstrate different types struct (STatistics R Using Class Templates) objects available part structToolbox objects (.e. class templates) can used conduct unsupervised supervised multivariate statistical analysis.","code":""},{"path":"https://computational-metabolomics.github.io/structToolbox/articles/data_analysis_omics_using_the_structtoolbox.html","id":"dataset","dir":"Articles","previous_headings":"Introduction to struct objects, including models, model sequences, model charts and ontology.","what":"Dataset","title":"Data analysis of metabolomics and other omics datasets using the structToolbox","text":"demonstration purposes use “Iris” dataset. famous (Fisher’s Anderson’s) dataset contains measurements sepal length width petal length width, centimeters, 50 flowers 3 class Iris. class Iris setosa, versicolor, virginica. See (https://stat.ethz.ch/R-manual/R-devel/library/datasets/html/iris.html) information. Note: vignette also compatible Direct infusion mass spectrometry metabolomics “benchmark” dataset described Kirwan et al., Sci Data 1, 140012 (2014) (https://doi.org/10.1038/sdata.2014.12). datasets available part structToolbox package already prepared DatasetExperiment object.","code":"## Iris dataset (comment if using MTBLS79 benchmark data) D = iris_DatasetExperiment() D$sample_meta$class = D$sample_meta$Species ## MTBLS (comment if using Iris data) # D = MTBLS79_DatasetExperiment(filtered=TRUE) # M = pqn_norm(qc_label='QC',factor_name='sample_type') + # knn_impute(neighbours=5) + # glog_transform(qc_label='QC',factor_name='sample_type') + # filter_smeta(mode='exclude',levels='QC',factor_name='sample_type') # M = model_apply(M,D) # D = predicted(M) # show info D ## A \"DatasetExperiment\" object ## ---------------------------- ## name: Fisher's Iris dataset ## description: This famous (Fisher's or Anderson's) iris data set gives the measurements in centimeters of ## the variables sepal length and width and petal length and width, ## respectively, for 50 flowers from each of 3 species of iris. The species are ## Iris setosa, versicolor, and virginica. ## data: 150 rows x 4 columns ## sample_meta: 150 rows x 2 columns ## variable_meta: 4 rows x 1 columns"},{"path":"https://computational-metabolomics.github.io/structToolbox/articles/data_analysis_omics_using_the_structtoolbox.html","id":"datasetexperiment-objects","dir":"Articles","previous_headings":"Introduction to struct objects, including models, model sequences, model charts and ontology. > Dataset","what":"DatasetExperiment objects","title":"Data analysis of metabolomics and other omics datasets using the structToolbox","text":"DatasetExperiment object extension SummarizedExperiment class used Bioconductor community. contains three main parts: data data frame containing measured data sample. sample_meta data frame additional information related samples e.g. group labels. variable_meta data frame additional information related variables (features) e.g. annotations Like struct objects also contains name description fields (called “slots” R language). key difference DatasetExperiment SummarizedExperiment objects data transposed. .e. DatasetExperiment objects samples rows features columns, opposite true SummarizedExperiment objects. slots accessible using dollar notation.","code":"# show some data head(D$data[,1:4]) ## Sepal.Length Sepal.Width Petal.Length Petal.Width ## 1 5.1 3.5 1.4 0.2 ## 2 4.9 3.0 1.4 0.2 ## 3 4.7 3.2 1.3 0.2 ## 4 4.6 3.1 1.5 0.2 ## 5 5.0 3.6 1.4 0.2 ## 6 5.4 3.9 1.7 0.4"},{"path":[]},{"path":"https://computational-metabolomics.github.io/structToolbox/articles/data_analysis_omics_using_the_structtoolbox.html","id":"statistical-models","dir":"Articles","previous_headings":"Introduction to struct objects, including models, model sequences, model charts and ontology. > Using struct model objects","what":"Statistical models","title":"Data analysis of metabolomics and other omics datasets using the structToolbox","text":"can apply e.g. PCA first need create PCA object. object contains inputs, outputs methods needed apply PCA. can set parameters number components PCA model created, can also use dollar notation change/view later. inputs model can listed using param_ids(object): summary object can printed console:","code":"P = PCA(number_components=15) P$number_components=5 P$number_components ## [1] 5 param_ids(P) ## [1] \"number_components\" P ## A \"PCA\" object ## -------------- ## name: Principal Component Analysis (PCA) ## description: PCA is a multivariate data reduction technique. It summarises the data in a smaller number of ## Principal Components that maximise variance. ## input params: number_components ## outputs: scores, loadings, eigenvalues, ssx, correlation, that ## predicted: that ## seq_in: data"},{"path":"https://computational-metabolomics.github.io/structToolbox/articles/data_analysis_omics_using_the_structtoolbox.html","id":"model-sequences","dir":"Articles","previous_headings":"Introduction to struct objects, including models, model sequences, model charts and ontology. > Using struct model objects","what":"Model sequences","title":"Data analysis of metabolomics and other omics datasets using the structToolbox","text":"Unless good reason , usually sensible mean centre columns data PCA. Using STRUCT framework can create model sequence mean centre apply PCA mean centred data. structToolbox mean centring PCA model objects, joining using “+” creates model_sequence object. model_sequence outputs first object (mean centring) automatically passed inputs second object (PCA), allows chain together modelling steps order build workflow. objects model_sequence can accessed indexing, can combine dollar notation. example, PCA object second object sequence can access number components follows:","code":"M = mean_centre() + PCA(number_components = 4) M[2]$number_components ## [1] 4"},{"path":"https://computational-metabolomics.github.io/structToolbox/articles/data_analysis_omics_using_the_structtoolbox.html","id":"trainingtesting-models","dir":"Articles","previous_headings":"Introduction to struct objects, including models, model sequences, model charts and ontology. > Using struct model objects","what":"Training/testing models","title":"Data analysis of metabolomics and other omics datasets using the structToolbox","text":"Model model_sequence objects need trained using data form DatasetExperiment object. example, PCA model sequence created (M) can trained using iris DatasetExperiment object (‘D’). model sequence now mean centred original data calculated PCA scores loadings. Model objects can used generate predictions test datasets. PCA model sequence involves mean centring test data using mean training data, projecting centred test data onto PCA model using loadings. outputs stored model sequence can accessed using dollar notation. example just use training data (sometimes called autoprediction), PCA allows us explore training data detail. Sometimes models don’t make use training/test approach e.g. univariate statsitics, filtering etc. models model_apply method can used instead. models provide training/test methods, model_apply applies autoprediction default .e. short-cut applying model_train model_predict data. available outputs object can listed accessed like input params, using dollar notation:","code":"M = model_train(M,D) M = model_predict(M,D) M = model_apply(M,D) output_ids(M[2]) ## [1] \"scores\" \"loadings\" \"eigenvalues\" \"ssx\" \"correlation\" ## [6] \"that\" M[2]$scores ## A \"DatasetExperiment\" object ## ---------------------------- ## name: ## description: ## data: 150 rows x 4 columns ## sample_meta: 150 rows x 2 columns ## variable_meta: 4 rows x 1 columns"},{"path":"https://computational-metabolomics.github.io/structToolbox/articles/data_analysis_omics_using_the_structtoolbox.html","id":"model-charts","dir":"Articles","previous_headings":"Introduction to struct objects, including models, model sequences, model charts and ontology. > Using struct model objects","what":"Model charts","title":"Data analysis of metabolomics and other omics datasets using the structToolbox","text":"struct framework includes chart objects. Charts associated model object can listed. Like model objects, chart objects need created can used. plot PCA scores plot mean centred PCA model. Note indexing PCA model required pca_scores_plot object requires PCA object input, model_sequence. make changes input parameters chart, chart_plot must called see effects. chart_plot method returns ggplot object can easily combine plots using gridExtra cowplot packages example.","code":"chart_names(M[2]) ## [1] \"pca_biplot\" \"pca_correlation_plot\" \"pca_dstat_plot\" ## [4] \"pca_loadings_plot\" \"pca_scores_plot\" \"pca_scree_plot\" C = pca_scores_plot(factor_name='class') # colour by class chart_plot(C,M[2]) # add petal width to meta data of pca scores M[2]$scores$sample_meta$example=D$data[,1] # update plot C$factor_name='example' chart_plot(C,M[2]) # scores plot C1 = pca_scores_plot(factor_name='class') # colour by class g1 = chart_plot(C1,M[2]) # scree plot C2 = pca_scree_plot() g2 = chart_plot(C2,M[2]) # arange in grid grid.arrange(grobs=list(g1,g2),nrow=1)"},{"path":"https://computational-metabolomics.github.io/structToolbox/articles/data_analysis_omics_using_the_structtoolbox.html","id":"ontology","dir":"Articles","previous_headings":"Introduction to struct objects, including models, model sequences, model charts and ontology. > Using struct model objects","what":"Ontology","title":"Data analysis of metabolomics and other omics datasets using the structToolbox","text":"Within struct framework (structToolbox) ontology slot provided allow standardardised definitions objects inputs outputs using Ontology Lookup Service (OLS). example, STATO general purpose STATistics Ontology (http://stato-ontology.org). webpage: aim provide coverage processes statistical tests, conditions application, information needed resulting statistical methods, probability distributions, variables, spread variation metrics. STATO also covers aspects experimental design description plots graphical representations commonly used provide visual cues data distribution layout assist review results. ontology object can set assigning ontology term identifier ontology slot struct_class object design time. ids can listed using $ notation: ontology method can used obtain detailed ontology information. cache = NULL struct package automatically attempt use OLS API (via rols package) obtain name description provided identifiers. used cached versions ontology definitions provided structToolbox package prevent issues connecting OLS API building package. Note ontology method returns definitions object (PCA) inputs/outputs (number_of_components).","code":"# create an example PCA object P=PCA() # ontology for the PCA object P$ontology ## [1] \"OBI:0200051\" ontology(P,cache = ontology_cache()) # set cache = NULL (default) for online use ## [[1]] ## An object of class \"ontology_list\" ## Slot \"terms\": ## [[1]] ## term id: OBI:0200051 ## ontology: obi ## label: principal components analysis dimensionality reduction ## description: A principal components analysis dimensionality reduction is a dimensionality reduction ## achieved by applying principal components analysis and by keeping low-order principal ## components and excluding higher-order ones. ## iri: http://purl.obolibrary.org/obo/OBI_0200051 ## ## ## ## [[2]] ## An object of class \"ontology_list\" ## Slot \"terms\": ## [[1]] ## term id: STATO:0000555 ## ontology: stato ## label: number of predictive components ## description: number of predictive components is a count used as input to the principle component analysis ## (PCA) ## iri: http://purl.obolibrary.org/obo/STATO_0000555"},{"path":"https://computational-metabolomics.github.io/structToolbox/articles/data_analysis_omics_using_the_structtoolbox.html","id":"validating-supervised-statistical-models","dir":"Articles","previous_headings":"Introduction to struct objects, including models, model sequences, model charts and ontology.","what":"Validating supervised statistical models","title":"Data analysis of metabolomics and other omics datasets using the structToolbox","text":"Validation important aspect chemometric modelling. struct framework enables kind iterative model testing iterator objects.","code":""},{"path":"https://computational-metabolomics.github.io/structToolbox/articles/data_analysis_omics_using_the_structtoolbox.html","id":"cross-validation","dir":"Articles","previous_headings":"Introduction to struct objects, including models, model sequences, model charts and ontology. > Validating supervised statistical models","what":"Cross-validation","title":"Data analysis of metabolomics and other omics datasets using the structToolbox","text":"Cross validation common technique assessing performance classification models. example use Partial least squares-discriminant analysis (PLS-DA) model. Data mean centred prior PLS, build model sequence first. iterator objects like k-fold cross-validation object (kfold_xval) can created just like struct object. Parameters can set creation using equals sign, accessed changed later using dollar notation. model cross-validated can set/accessed using models method. Alternatively, iterators can combined models using multiplication symbol shorthand models assignement method: run method can used iterator object. iterator run set model model sequence multiple times. case run cross-validation 5 times, splitting data different training test sets time. run method also needs metric specified, another type struct object. metric may calculated iterations, iteration, depending iterator type (resampling, permutation etc). cross-validation calculate “balanced accuracy” iterations. Note balanced_accuracy metric actually reports 1-accuracy, value 0 indicates perfect performance. standard deviation “sd” NA example one permutation. Like struct objects, iterators can chart objects associated . chart_names function list object. Charts iterator objects can plotted way charts object. possible combine multiple iterators using multiplication symbol. equivalent nesting one iterator inside . example, can repeat cross-validation multiple times permuting sample order.","code":"M = mean_centre() + PLSDA(number_components=2,factor_name='class') M ## A model_seq object containing: ## ## [1] ## A \"mean_centre\" object ## ---------------------- ## name: Mean centre ## description: The mean sample is subtracted from all samples in the data matrix. The features in the centred ## matrix all have zero mean. ## input params: mode ## outputs: centred, mean_data, mean_sample_meta ## predicted: centred ## seq_in: data ## ## [2] ## A \"PLSDA\" object ## ---------------- ## name: Partial least squares discriminant analysis ## description: PLS is a multivariate regression technique that extracts latent variables maximising ## covariance between the input data and the response. The Discriminant Analysis ## variant uses group labels in the response variable. For >2 groups a 1-vs-all ## approach is used. Group membership can be predicted for test samples based on ## a probability estimate of group membership, or the estimated y-value. ## input params: number_components, factor_name, pred_method ## outputs: scores, loadings, yhat, design_matrix, y, reg_coeff, probability, vip, pls_model, pred, threshold, sr, sr_pvalue ## predicted: pred ## seq_in: data # create object XCV = kfold_xval(folds=5,factor_name='class') # change the number of folds XCV$folds=10 XCV$folds ## [1] 10 models(XCV)=M models(XCV) ## A model_seq object containing: ## ## [1] ## A \"mean_centre\" object ## ---------------------- ## name: Mean centre ## description: The mean sample is subtracted from all samples in the data matrix. The features in the centred ## matrix all have zero mean. ## input params: mode ## outputs: centred, mean_data, mean_sample_meta ## predicted: centred ## seq_in: data ## ## [2] ## A \"PLSDA\" object ## ---------------- ## name: Partial least squares discriminant analysis ## description: PLS is a multivariate regression technique that extracts latent variables maximising ## covariance between the input data and the response. The Discriminant Analysis ## variant uses group labels in the response variable. For >2 groups a 1-vs-all ## approach is used. Group membership can be predicted for test samples based on ## a probability estimate of group membership, or the estimated y-value. ## input params: number_components, factor_name, pred_method ## outputs: scores, loadings, yhat, design_matrix, y, reg_coeff, probability, vip, pls_model, pred, threshold, sr, sr_pvalue ## predicted: pred ## seq_in: data # cross validation of a mean centred PLSDA model XCV = kfold_xval( folds=5, method='venetian', factor_name='class') * (mean_centre() + PLSDA(factor_name='class')) XCV = run(XCV,D,balanced_accuracy()) XCV$metric ## metric mean sd ## 1 balanced_accuracy 0.11 NA chart_names(XCV) ## [1] \"kfoldxcv_grid\" \"kfoldxcv_metric\" C = kfoldxcv_grid( factor_name='class', level=levels(D$sample_meta$class)[2]) # first level chart_plot(C,XCV) # permute sample order 10 times and run cross-validation P = permute_sample_order(number_of_permutations = 10) * kfold_xval(folds=5,factor_name='class')* (mean_centre() + PLSDA(factor_name='class',number_components=2)) P = run(P,D,balanced_accuracy()) P$metric ## metric mean sd ## 1 balanced_accuracy 0.1095 0.004972145"},{"path":[]},{"path":"https://computational-metabolomics.github.io/structToolbox/articles/data_analysis_omics_using_the_structtoolbox.html","id":"introduction-2","dir":"Articles","previous_headings":"A typical workflow for processing and analysing mass spectrometry-based metabolomics data.","what":"Introduction","title":"Data analysis of metabolomics and other omics datasets using the structToolbox","text":"vignette provides overview structToolbox workflow implemented process (e.g. filter features, signal drift batch correction, normalise missing value imputation) mass spectrometry data. workflow exists methods part Peak Matrix Processing (pmp) package, including range additional filters described Kirwan et al., 2013, 2014. packages required vignette addition structToolbox:","code":""},{"path":"https://computational-metabolomics.github.io/structToolbox/articles/data_analysis_omics_using_the_structtoolbox.html","id":"dataset-1","dir":"Articles","previous_headings":"A typical workflow for processing and analysing mass spectrometry-based metabolomics data.","what":"Dataset","title":"Data analysis of metabolomics and other omics datasets using the structToolbox","text":"demonstration purposes process analyse MTBLS79 dataset (‘Dataset 7:SFPM’ Kirwan et al., 2014. dataset represents systematic evaluation reproducibility multi-batch direct-infusion mass spectrometry (DIMS)-based metabolomics study cardiac tissue extracts. comprises twenty biological samples (cow vs. sheep) analysed repeatedly, 8 batches across 7 days, together concurrent set quality control (QC) samples. Data presented step data processing workflow available MetaboLights (https://www.ebi.ac.uk/metabolights/MTBLS79). MTBLS79_DatasetExperiment object included structToolbox package processed version MTBLS79 dataset available peak matrix processing (pmp) package. vignette describes step step structToolbox version created pmp version (.e. ‘Dataset 7:SFPM’ Scientific Data publication - https://doi.org/10.1038/sdata.2014.12). SummarizedExperiment object pmp package needs converted DatasetExperiment object use structToolbox. Full processing data set requires number steps. applied using single struct model sequence (model_seq).","code":"# the pmp SE object SE = MTBLS79 # convert to DE DE = as.DatasetExperiment(SE) DE$name = 'MTBLS79' DE$description = 'Converted from SE provided by the pmp package' # add a column indicating the order the samples were measured in DE$sample_meta$run_order = 1:nrow(DE) # add a column indicating if the sample is biological or a QC Type=as.character(DE$sample_meta$Class) Type[Type != 'QC'] = 'Sample' DE$sample_meta$Type = factor(Type) # add a column for plotting batches DE$sample_meta$batch_qc = DE$sample_meta$Batch DE$sample_meta$batch_qc[DE$sample_meta$Type=='QC']='QC' # convert to factors DE$sample_meta$Batch = factor(DE$sample_meta$Batch) DE$sample_meta$Type = factor(DE$sample_meta$Type) DE$sample_meta$Class = factor(DE$sample_meta$Class) DE$sample_meta$batch_qc = factor(DE$sample_meta$batch_qc) # print summary DE ## A \"DatasetExperiment\" object ## ---------------------------- ## name: MTBLS79 ## description: Converted from SE provided by the pmp package ## data: 172 rows x 2488 columns ## sample_meta: 172 rows x 7 columns ## variable_meta: 2488 rows x 0 columns"},{"path":"https://computational-metabolomics.github.io/structToolbox/articles/data_analysis_omics_using_the_structtoolbox.html","id":"signal-drift-and-batch-correction","dir":"Articles","previous_headings":"A typical workflow for processing and analysing mass spectrometry-based metabolomics data.","what":"Signal drift and batch correction","title":"Data analysis of metabolomics and other omics datasets using the structToolbox","text":"batch correction algorithm applied reduce intra- inter- batch variations dataset. Quality Control-Robust Spline Correction (QC-RSC) provided pmp package, wrapped structToolbox object called sb_corr. figure shows plot feature vs run order, correction. fitted spline batch shown grey. can seen correction removed instrument drift within batches. additional step added published workflow remove feature corrected QCRCMS. can occur enough measured QC values within batch. QCRMS pmp package currently returns NA samples feature occurs. Features occurs excluded. output step output MTBLS79_DatasetExperiment(filtered=FALSE).","code":"M = # batch correction sb_corr( order_col='run_order', batch_col='Batch', qc_col='Type', qc_label='QC', spar_lim = c(0.6,0.8) ) M = model_apply(M,DE) C = feature_profile( run_order='run_order', qc_label='QC', qc_column='Type', colour_by='batch_qc', feature_to_plot='200.03196', plot_sd=FALSE ) # plot and modify using ggplot2 chart_plot(C,M,DE)+ylab('Peak area')+ggtitle('Before') chart_plot(C,predicted(M))+ylab('Peak area')+ggtitle('After') M2 = filter_na_count( threshold=3, factor_name='Batch' ) M2 = model_apply(M2,predicted(M)) # calculate number of features removed nc = ncol(DE) - ncol(predicted(M2)) cat(paste0('Number of features removed: ', nc)) ## Number of features removed: 425"},{"path":"https://computational-metabolomics.github.io/structToolbox/articles/data_analysis_omics_using_the_structtoolbox.html","id":"feature-filtering","dir":"Articles","previous_headings":"A typical workflow for processing and analysing mass spectrometry-based metabolomics data.","what":"Feature filtering","title":"Data analysis of metabolomics and other omics datasets using the structToolbox","text":"journal article three spectral cleaning steps applied. first filter Kruskal-Wallis test used identify features reliably detected QC samples (p < 0.0001) batches. follow parameters original article use multiple test correction (mtc = 'none'). make use univariate tests kw_rank_sum filter advanced features struct needed. Slots predicted, seq_in used ensure correct output univariate test connected correct input feature filter using filter_by_name. Another slot seq_fcn used extract relevant column predicted output compatible seq_in input. placeholder used “names” parameter (names = 'place_holder') input replaced output seq_fcn. second filter Wilcoxon Signed-Rank test. used identify features representative average biological samples (p < 1e-14). make use seq_in seq_fcn. Finally, RSD filter used remove features high analytical variation (QC RSD > 20 removed) output filter output MTBLS79_DatasetExperiment(filtered=TRUE).","code":"M3 = kw_rank_sum( alpha=0.0001, mtc='none', factor_names='Batch', predicted='significant' ) + filter_by_name( mode='exclude', dimension = 'variable', seq_in = 'names', names='seq_fcn', # this is a placeholder and will be replaced by seq_fcn seq_fcn=function(x){return(x[,1])} ) M3 = model_apply(M3, predicted(M2)) nc = ncol(predicted(M2)) - ncol(predicted(M3)) cat(paste0('Number of features removed: ', nc)) ## Number of features removed: 262 M4 = wilcox_test( alpha=1e-14, factor_names='Type', mtc='none', predicted = 'significant' ) + filter_by_name( mode='exclude', dimension='variable', seq_in='names', names='place_holder', seq_fcn=function(x){return(x$significant)} ) M4 = model_apply(M4, predicted(M3)) nc = ncol(predicted(M3)) - ncol(predicted(M4)) cat(paste0('Number of features removed: ', nc)) ## Number of features removed: 169 M5 = rsd_filter( rsd_threshold=20, factor_name='Type' ) M5 = model_apply(M5,predicted(M4)) nc = ncol(predicted(M4)) - ncol(predicted(M5)) cat(paste0('Number of features removed: ', nc)) ## Number of features removed: 53"},{"path":"https://computational-metabolomics.github.io/structToolbox/articles/data_analysis_omics_using_the_structtoolbox.html","id":"normalisation-missing-value-imputation-and-scaling","dir":"Articles","previous_headings":"A typical workflow for processing and analysing mass spectrometry-based metabolomics data.","what":"Normalisation, missing value imputation and scaling","title":"Data analysis of metabolomics and other omics datasets using the structToolbox","text":"apply number common pre-processing steps filtered peak matrix identical steps applied described Kirwan et al. 2013, 2014. Probabilistic Quotient Normalisation (PQN) k-nearest neighbours imputation (k = 5) Generalised log transform (glog) steps prepare data multivariate analysis accounting sample concentration differences, imputing missing values scaling data.","code":"# peak matrix processing M6 = pqn_norm(qc_label='QC',factor_name='Type') + knn_impute(neighbours=5) + glog_transform(qc_label='QC',factor_name='Type') M6 = model_apply(M6,predicted(M5))"},{"path":"https://computational-metabolomics.github.io/structToolbox/articles/data_analysis_omics_using_the_structtoolbox.html","id":"exploratory-analysis","dir":"Articles","previous_headings":"A typical workflow for processing and analysing mass spectrometry-based metabolomics data.","what":"Exploratory Analysis","title":"Data analysis of metabolomics and other omics datasets using the structToolbox","text":"Principal Component Analysis (PCA) can used visualise high-dimensional data. unsupervised method maximises variance reduced number latent variables, principal components. plot similar Figure 3b original publication link. Sample replicates represented colours samples groups (C = cow S = Sheep) different shapes. Plotting scores colouring Batch indicates signal/batch correction effective batches overlapping.","code":"# PCA M7 = mean_centre() + PCA(number_components = 2) # apply model sequence to data M7 = model_apply(M7,predicted(M6)) # plot pca scores C = pca_scores_plot(factor_name=c('Sample_Rep','Class'),ellipse='none') chart_plot(C,M7[2]) + coord_fixed() +guides(colour=FALSE) ## Warning: The `