Displaying 1 result from an estimated 1 matches for "housecolor".
2009 Oct 29
2
Recommendation for dealing with mixed input types in CSV
Currently I have a CSV with mixed input types that I am trying to read in and reformat without having to list off all the column names.? Below is an example of the data:
HouseColor, HouseSize, HouseCost
Blue, 1600, 160e3
Blue, 1600, 160e3
Actually I have about 60 columns like this, so imagine the above repeated about 30 times column-wise.?
Luckily the ones in scientific notation are grouped together, i.e. columns 11-56.
Using read.csv or as.numeric, is there?a way to con...