[問題類型]:
程式諮詢(我想用R 做某件事情,但是我不知道要怎麼用R 寫出來)
[軟體熟悉度]:
入門(寫過其他程式,只是對語法不熟悉)
[問題敘述]:
我有一組數據(IDW_table) ,我想處理分組計算後,另存成一個data.frame
但目前結果只能顯示在console,無法另存起來,不知道哪裡寫錯了,請給個指教
下列是我的資料格式 (範例檔https://reurl.cc/0pMROo)
yearmon actual predicted
202101 11.3 10.626
202101 11.3 10.805
202102 11.2 10.78
202103 11.1 10.727
[程式範例]:
library(dplyr)
x <- data.frame(stringsAsFactors = F)
IDW_table%>%
select(yearmon,actual,predicted)%>%
group_by(yearmon) %>%
summarise( RMSE = sqrt(1/length(actual)*sum((actual-predicted)^2)) )%>%
as.data.frame()%>%
rbind.data.frame(x)
我自己嘗試成功了 但這好像不能刪文,所以我就把成功的部份寫出來,獻醜
x <- IDW_table%>%
select(yearmon,actual,predicted)%>%
group_by(yearmon) %>%
summarise( RMSE = sqrt(1/length(actual)*sum((actual-predicted)^2)) )%>%
as.data.frame()
[環境敘述]:
請提供 sessionInfo() 的輸出結果
R version 4.1.3 Patched (2022-03-10 r81883)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 10 x64 (build 22000)
other attached packages:
[1] dplyr_1.0.9
[關鍵字]:
選擇性,也許未來有用