set_all_counts<- {PubScore} | R Documentation |
Set the all_counts attribute
set_all_counts(pub) <- value ## S4 replacement method for signature 'PubScore' set_all_counts(pub) <- value
pub |
Object of class |
value |
The table with all gene x term article counts from the "test_score" method. |
A dataframe containing the counts table for all genes.
terms_of_interest <- c('Dengue') pub <- pubscore(terms_of_interest = terms_of_interest, genes = c("CD4", "CD8", "CD14") ) print(getScore(pub)) data("all_counts") set_all_counts(pub) <- all_counts