I am trying to schematic plot of txt data but when I write schematic.plot there is no package in Rstudio. I am searching for the package but it is not downloading.
2 Answers
In order to install a package in Rstudio you would want to run the command to in the console as follows:
install.packages("BiocManager") To install ELMER as this package contains the schematic.plot function I believe you are looking for we actually install it using bioconductors installer as follows:
install.packages("BiocManager") BiocManager::install("ELMER") Please let me know if this isn't what you're looking for and I'll try to improve the answer.
You probably need to do:
install.packages("ELMER") library(ELMER) to get the package in there.
1