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

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.