search for: frespid

Displaying 8 results from an estimated 8 matches for "frespid".

Did you mean: respid
2013 Jan 04
2
Can you help me please
...003-01-09 containing: #? Data: int [1:7, 1] 20235 25655 225860 289658 243889 244338 243889 #? Indexed by objects of class: [Date] TZ: #? xts Attributes:? #List of 2 # $ tclass: chr "Date" ?#$ tzone : chr "" plot(dat2) A.K. ________________________________ From: Fares Said <frespider at hotmail.com> To: arun <smartpink111 at yahoo.com> Sent: Friday, January 4, 2013 9:16 AM Subject: Can you help me please Hi A.K, I am not sure if you have looked at this question, If not can you please look http://r.789695.n4.nabble.com/Generate-time-series-data-td4654589.html...
2012 Nov 01
4
Return Vector Component
Hi, I am new R user and I am still learn this fabulous software. I am stuck on this part. I need to check 2 character vectors v1 <-
2012 Nov 04
3
Saving R Graph to a file
Hi I am not sure why I can't get my plot saved to a file as .ps, I searched online and I found that I have to use something is called postscript,png or pdf function which I did but still not working. Actually what I have is a matrix with almost 300-400 columns. I need to create a histogram and boxplot for some columns as .ps file (with reasonable size if i can adjust that would be nice also)
2012 Nov 23
6
Summary statistics for matrix columns
Hi, is there a way I can calculate a summary statistics for a columns matrix let say we have this matrix x <- matrix(sample(1:8000),nrow=100) colnames(x)<- paste("Col",1:ncol(x),sep="") if I used summary summary(x) i get the output for each column but I need the output to be in matrix with rownames and all the columns beside it this how I want it
2012 Nov 07
5
Calling R object from R function
Hi, Can you please help me with this please? What I am trying to do is call a vector from R function and used in the new function So I create 4 functions with these arguments M11 <- function(TrainData,TestData,mdat,nsam) { ls <- list() I have few statments one of them is vectx <- c(,1,2,3,4,5,6,6) vectz <- c(12,34,5,6,78,9,90) and then................ ls(vectx=vtecx,vectz=vectz)
2012 Nov 21
4
Remove Column from matrix
Hi,, Can I get help with this. I need to remove a column form the matrix if that specific column has his all entry zero, here the code I wrote but it is not working can you help me please namVar <-
2012 Nov 16
2
R-Square in WLS
Hi, I am fitting a weighted least square regression and trying to compute SSE,SST and SSReg but I am not getting SST = SSReg + SSE and I dont know what I am coding wrong. Can you help please? xnam <-colnames(X) # colnames Design Matrix fmla1 <- as.formula(paste("Y ~",paste(xnam, collapse=
2012 Nov 16
4
Multiple Vector with matrix in R
Hi Can someone show me an easy way to multiple a weighted vector with an matrix? example below mat1<-matrix(sample(1:100,80,replace=TRUE),ncol=8) w <- 1/1:10 I want the first element in w to be multiplied by the first row of mat1 and 2nd element in w to be multiplied with the 2nd row and so on. I have huge matrix is there an easy way other than diag(w)%*%mat1 Thanks -- View this