We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Am I using it improperly? If so, could you add an example of correct use to the vignette? Minimal reproducible example follows.
If genefilter needs installation.
if (!require("BiocManager", quietly = TRUE)) install.packages("BiocManager") BiocManager::install("genefilter")
Load the package. Simulate and test.
library(genefilter) dataset <- sapply(1:1000, function(index) rnorm(20)) result <- colttests(dataset, factor(rep(c("No", "Yes"), length.out = 20))) library(qqplotr) ggplot(result, mapping = aes(sample = p.value)) + stat_qq_band() + stat_qq_line() + stat_qq_point()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Am I using it improperly? If so, could you add an example of correct use to the vignette? Minimal reproducible example follows.
If genefilter needs installation.
Load the package. Simulate and test.
The text was updated successfully, but these errors were encountered: