if i have a file containing say (age,weight,city,town,height) is there a way to restructure the file so that all the numeric data eithier comes first or second such as (age,weight,height,city,town) in a simple way. I want to know this because i have numeric and non numeric data about 10 columns long andhave to normalize using min/max only the numeric fields and it would be faster if they were all in one half of my dataset so i can just use a loop. Sorry i'm new to R and i'm using it in mac os if thats important.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Constructing a sample data.frame:
That's how you can order the columns:
|
|||
|
|
|
Why bother reordering the columns, when you can simply loop over them and scale the numeric ones as needed?
An equivalent, although somewhat bizarre looking, solution using some handy plyr functions:
the versions |
||||
|
|
