Displaying 2 results from an estimated 2 matches for "januray".
Did you mean:
  january
  
2012 Mar 27
2
new chain cleanups - question re. preferred license
I'm preparing a few simple patches that will cleanup few things 
regarding new chain - in particular the ones I mentioned in Januray 
during discussion with Shao (tone down overkill abstractions, etc.).
One question on a formal side though - which license is preferred at the 
top of the source files ? Currently there're two present - either 
something bsd-ish (on parts derived from Shao's partition handling 
code), GPL...
2009 Sep 30
1
Read header csv file
...t;,filename)
        sink()
        clima<-read.csv2(filename, nrows=7) #open 2004.csv
And in my text file would read
Year: 2004
Now, I want to the same to months. (I have built a for loop to read months inside for loop to read years). When I import a csv file I get something like this
     Januray    February ....
1        3.0         4.1    
2        1.4          3.7
3         0.2         1.5
4         6.7          4.1
.
.
.
I can use commands like clima$Januray or clima[[1]] but I just get precipitation values. However, I am not able to get the header of the column. If I would able to do...