Question about BiocManager and genefilter package
1
0
Entering edit mode
@jkuhndechizelle-22297
Last seen 4.5 years ago

Hi all, I need to use the BiocManager and genefilter package for one of my classes and cannot get the program to load in R. I was redirected to this website for answers.Below is the code and my errors. How do I fix this?:

> install.packages("BiocManager")
> BiocManager::install("genefilter")
Bioconductor version 3.10 (BiocManager 1.30.9), R 3.6.1 (2019-07-05)
Installing package(s) 'genefilter'
Warning: package ‘genefilter’ is in use and will not be installed
Installation path not writeable, unable to update packages: boot, foreign,
  KernSmooth, mgcv, nlme
> library(genefilter)
> tt <- colttests(x, y)
Error in colttests(x, y) : object 'x' not found
software error • 574 views
ADD COMMENT
0
Entering edit mode
@martin-morgan-1513
Last seen 16 days ago
United States

The command

> library(genefilter)
>

completes successfully, indicatingt that genefilter has been loaded from from your library and attached to the current session. The command

> tt <- colttests(x, y)
Error in colttests(x, y) : object 'x' not found

indicates that you have tried to use colttests() from the genefilter package. R has found the function (in the genefilter package that you have attached to the current session) but has not found an object x, presumably because you have not defined x in your session. What x should be is defined on the help page ?colttests and you must figure out how to define it in a way relevant to your data.

ADD COMMENT

Login before adding your answer.

Traffic: 724 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6