View source: R/tidyMS_R6_TransitionCorrelations.R
remove_small_intensities | R Documentation |
Remove rows when intensity lower then threshold
remove_small_intensities(pdata, config, threshold = 1)
pdata |
data.frame |
config |
AnalysisConfiguration |
data.frame
Other filtering:
remove_large_QValues()
dd <- prolfqua_data('data_spectronautDIA250_A')
config <- dd$config_f()
analysis <- dd$analysis(dd$data,config)
config$table$get_response()
res1 <- remove_small_intensities(analysis, config, threshold=1 )
res1000 <- remove_small_intensities(analysis, config, threshold=1000 )
stopifnot(nrow(res1) > nrow(res1000))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.