Problem :
I am very new to R. I have very recently joined R project team. I can surely say that there are no NA values in the data still I am facing following error for my below written code:
Please find below my code for your reference:
mydata=read.csv("noise.csv")
attach(mydata)
log.dat=log(mydata[,1:5])
dat.sspressure=mydata[,6]
dat.pca=prcomp(log.dat,center=TRUE,scale=TRUE)
Please find below my error for your reference:
“Error in svd(x, nu = 0, nv = k) : infinite or missing values in 'x'”.
I have already spent a lot of time in trying to fix above error. So now I am looking for the expert who can suggest quick fix for above error.