我有一個csv,它有一個經緯度座標列表,每個座標的日期。我有代碼按日期分割數據如何在R中使用分割功能後保持日期順序?
X <- split(mydata, mydata$date)
但是,當我運行該函數的數據是按數字排序,而不是按日期排序。因此,例如這樣的:
long lat date
26.71360 -31.67479 04-04-2013
26.53347 -31.54144 05-04-2013
26.36730 -31.39950 06-04-2013
26.15438 -31.27452 04-05-2013
26.25447 -31.06523 04-05-2013
26.31591 -30.92225 04-05-2013
將被轉換爲:請注意,日期/月/年
long lat date
26.71360 -31.67479 04-04-2013
26.53347 -31.54144 04-05-2013
26.36730 -31.39950 04-05-2013
26.15438 -31.27452 04-05-2013
26.25447 -31.06523 05-04-2013
26.31591 -30.92225 06-04-2013
我怎樣才能保持秩序?
感謝
你能提供一個可重複的例子嗎? –
請檢查這些鏈接關於一個可重複的例子的一般想法,以及如何在R中產生一個:[** here **](http://stackoverflow.com/help/mcve)和[** here **](http ://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example/5963610#5963610) – Henrik