0
所以我正在處理這個數據集,這是一個csv文件。 MYDATA = 名學校total_consumption 衝壓ABC 15 RAM1 ABCD 16 RAM2 ABCDE 17 RAM3 ABCDEF 18 RAM4 ACB 19 ram5 acbe 20分配值到行
現在我想整個數據以降序進行排序,然後分配段如s1,s2等。用戶輸入段號作爲輸入。假設用戶輸入2將有2段。現在總的行沒有將除以2,然後上半年將段1和第二半將段2
段VAL = 2 輸出segemnt 20 S1 19 S1 18 S1 17 S2
16 S2 15 S2
這裏是我的代碼:
library(dplyr)
library(reshape2)
library (hts)
setwd("C:/Users/Desktop/r")
mydata <- read.csv("read1.csv")
mydata$newcolumn <- NA
temp1 <- mydata[order(mydata$fy_vol, decreasing = TRUE),]
nrow(temp1)
row <- nrow(temp1)
readinteger <- function()
{
n <- readline(prompt="Enter number of quant: ")
n <- as.integer(n)
if (is.na(n)){
n <- readinteger()
}
return(n)
}
q <- readinteger()
nrow(temp1)
row <- nrow(temp1)
有沒有示例數據,我可以用來做你在做什麼。問題沒有明確定義。你的代碼有錯誤。例如。訂單統計應該有數據$ total_consumption而不是數據$ fy_vol。 – Lune3414