[R] data frame move columns

2010-04-28 Thread arnaud Gaboury
Dear group, Here is my df: avprix - structure(list(DESCRIPTION = c(CORN Jul/10, CORN May/10, ROBUSTA COFFEE (10) Jul/10, SOYBEANS Jul/10, SPCL HIGH GRADE ZINC USD, STANDARD LEAD USD), prix = c(-1.5, -1082, 11084, 1983.5, -2464, -118), quantity = c(0, -3, 8, 2, -1, 0), fees = c(-8.64, -30.24,

Re: [R] data frame move columns

2010-04-28 Thread Erik Iverson
avprix - structure(list(DESCRIPTION = c(CORN Jul/10, CORN May/10, ROBUSTA COFFEE (10) Jul/10, SOYBEANS Jul/10, SPCL HIGH GRADE ZINC USD, STANDARD LEAD USD), prix = c(-1.5, -1082, 11084, 1983.5, -2464, -118), quantity = c(0, -3, 8, 2, -1, 0), fees = c(-8.64, -30.24, -26.4, -25.92, -37.5,

Re: [R] data frame move columns

2010-04-28 Thread David Winsemius
On Apr 28, 2010, at 11:14 AM, arnaud Gaboury wrote: Dear group, Here is my df: avprix - structure(list(DESCRIPTION = c(CORN Jul/10, CORN May/10, ROBUSTA COFFEE (10) Jul/10, SOYBEANS Jul/10, SPCL HIGH GRADE ZINC USD, STANDARD LEAD USD), prix = c(-1.5, -1082, 11084, 1983.5, -2464, -118),

Re: [R] data frame move columns

2010-04-28 Thread arnaud Gaboury
I want the 0s to be at the end or beginning. -Original Message- From: Erik Iverson [mailto:er...@ccbr.umn.edu] Sent: Wednesday, April 28, 2010 5:21 PM To: arnaud Gaboury Cc: r-help@r-project.org Subject: Re: [R] data frame move columns avprix - structure(list(DESCRIPTION

Re: [R] data frame move columns

2010-04-28 Thread arnaud Gaboury
TY david. Here we go with a correct code! -Original Message- From: David Winsemius [mailto:dwinsem...@comcast.net] Sent: Wednesday, April 28, 2010 5:28 PM To: arnaud Gaboury Cc: r-help@r-project.org Subject: Re: [R] data frame move columns On Apr 28, 2010, at 11:14 AM