thank you Deepak for paying attention
I did so:
data <- ReadAffy()
>
> exp <- rma(data)
Background correcting
Normalizing
Calculating Expression
> control <- grep("AFFX",rownames(exp))
> exp <- exp[-control,]
> e <- exprs(exp)
> e <- apply(e,1,function(x) x-median(x))
> e.scaled <- t(scale(t(e),center=FALSE))
> write.table(e.scaled, file = "scaled_output.txt", sep = "\t", quote = F)
> scaled_table <- read.table("scaled_output.txt", sep = "\t", header = T, stringAsFactors = F, check.names = F, comment.char = "")
Error in read.table("scaled_output.txt", sep = "\t", header = T, stringAsFactors = F, :
unused argument (stringAsFactors = F)
> View(scaled_table)
Error in as.data.frame(x) : object 'scaled_table' not found
>
show here output of
thank Deepak, a long R console that I copied a bit of
here instead of probes, arrays are in column one and no thing is like a tab-delimited format
Perform these 3 commands and show the output:
thank you,
and the output of
head(e.scaled)was which I copied and pasted in previous comment