Displaying 3 results from an estimated 3 matches for "analytica".
Did you mean:
analytics
2012 May 16
1
Merging multiple data sets
...myfile)
data_22 <- get(temp_data)
if(dim(output_data_prod)[1]==0){output_data_prod <- data_22
}else{
output_data_prod <- merge(inData1 = output_data_prod,
inData2 = data_22 ,type = "inner", all=FALSE ,
by =c("x11"))}
}
-----
Bharat Warule
Cypress Analytica ,
Pune
--
View this message in context: http://r.789695.n4.nabble.com/Merging-multiple-data-sets-tp4630244.html
Sent from the R help mailing list archive at Nabble.com.
2012 Aug 10
1
Split CSV as per file size
Hi here i have a code to split a csv file as per group of line.
The code given below,
------------------------------------
SplitCSVByLine <- function(DataMatrix,Destination,NoOfLineToGroup)
{
input <- file(DataMatrix, "r")
fileNo <- 1
repeat
{
myLines <- readLines(input, n=NoOfLineToGroup)
if (length(myLines) == 0) break
2012 Jan 19
1
RApache installation problems
Hi all
I was trying to isntall RApache last week but ran into strnge problems that no one else seems to be experiencing. At least I couldn't find anything after extensive googling.
First off, the machine I'm installing on looks like this:
Dell Optiplex 745
32 bit
2GB RAM
Fedora 15
httpd -v
Server version: Apache/2.2.21 (Unix)
Server built: Sep 13 2011 13:46:23
R:
R-2.14.0-3.fc15.i686