-1
我想用正確的標題填充缺少的表格行,並在下面填充零。我也試圖用桌子進行劃分。用零填充缺失的列,然後將表格的底部行除以另一個表格的底部行
nba <- read.csv('nbadatasort.csv',header=FALSE)
one <- grepl('\\Q+\\E',nba$V2)
two <- grepl('\\Q*\\E',nba$V2)
three <- grepl('\\Q^\\E',nba$V2)
needed <- one | two | three
allstar <- subset.data.frame(nba, needed)
#This table lets me know how many people are in each draft number: It will return the following:
# 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
#25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 24 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25 25
#54 55 56 57 58 59 60
#25 20 20 20 19 11 10
table(nba$V1)
#This table lets me know how many all stars each draft number had. It will return the following:
#1 2 3 4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20 21 24 25 28 29 30 31 32 35 37 38 43 45 47 48 51 57 60
#17 9 11 8 9 6 3 1 8 8 4 2 1 2 2 4 2 3 2 3 4 1 1 1 2 1 2 2 1 1 1 1 2 2 1 1 1
table(allstar$V1)
我的目標是在第二個表(ALLSTAR $ V1)和存在一個12其間的11與13和下12.一個零填充它以這樣然後我想將每個底部nba表中allstar表的值,這樣我得到值爲0.68爲1,0.36爲2等等。
任何幫助非常感謝。謝謝。
而不是使用'「\\ \\ Q E」'轉義特殊字符的正則表達式,你也可以使用'固定= TRUE' 'grepl'中的參數將'pattern ='參數中的所有內容視爲固定字符串。 – useR