简体   繁体   English

R,在使用订单函数时给一元运算符一个无效的参数

[英]R, getting an invalid argument to unary operator when using order function

I'm essentially doing the exact same thing 3 times, and when adding a new variable I get this error 我实际上是在做3次完全相同的操作,并且在添加新变量时出现此错误

Error in -emps$EV : invalid argument to unary operator

The code chunk causing this is 导致此的代码块是

evps<-aggregate(EV~player,s1k,mean)
sort2<-evps[order(-evps$EV),]
head(sort2,10)

s1k$EM<-s1k$points-s1k$EV
emps<-aggregate(EM~player,s1k,mean)
sort3<-emps[order(-emps$EV),]
head(sort3,10)

Works like a charm for the first list, but the identical code thereafter causes the error. 第一个列表的工作方式像一个超级按钮,但是此后相同的代码会导致错误。

This specific line is causing the error 此特定行导致错误

sort3<-emps[order(-emps$EV),]

How can I fix/workaround this? 我该如何解决/解决此问题?

Full Code 完整代码

url <- getURL("https://raw.githubusercontent.com/M-ttM/Basketball/master/class.csv")
shots <- read.csv(text = url)
shots$make<-shots$points>0
shots2<-shots[which(!(shots$player=="Luc Richard Mbah a Moute")),]
fit1<-glm(make~factor(type)+factor(period), data=shots2,family="binomial")
summary(fit1)
shots2$makeodds<-fitted(fit1)
shots2$EV<-shots2$makeodds*ifelse(shots2$type=="3pt",3,2)
shots3<-shots2[which(shots2$y>7),]
locmakes<-data.frame(table(shots3[, c("x", "y")]))

s1k <- shots2[with(shots2, player %in% names(which(table(player)>=1000))), ]

pps<-aggregate(points~player,s1k,mean)
sort<-pps[order(-PPS$points),]
head(sort,10)

evps<-aggregate(EV~player,s1k,mean)
sort2<-evps[order(-evps$EV),]
head(sort2,10)

s1k$EM<-s1k$points-s1k$EV
emps<-aggregate(EM~player,s1k,mean)
sort3<-emps[order(-emps$EV),]
head(sort3,10)

The error message seems to occur when trying to order columns including chr type data. 尝试对包括chr类型数据的列进行排序时,似乎会出现错误消息。 A possible workaround is to use the reverse function rev() instead of the minus sign, like so: 可能的解决方法是使用反向函数rev()代替减号,如下所示:

column_a = c("a","a","b","b","c","c")
column_b = seq(6)
df = data.frame(column_a, column_b)
df$column_a = as.character(df$column_a)

df[with(df, order(-column_a, column_b)),]
> Error in -column_a : invalid argument to unary operator

df[with(df, order(rev(column_a), column_b)),]
  column_a column_b
5        c        5
6        c        6
3        b        3
4        b        4
1        a        1
2        a        2

Let me know if it works in your case. 让我知道它是否适合您的情况。

On this line, emps$EV doesn't exist. 在这条线上, emps$EV不存在。

s1k$EM<-s1k$points-s1k$EV
emps<-aggregate(EM~player,s1k,mean)
sort3<-emps[order(-emps$EV),]
head(sort3,10)

You probably meant 你可能是说

s1k$EM<-s1k$points-s1k$EV
emps<-aggregate(EM~player,s1k,mean)
sort3<-emps[order(-emps$EM),]
head(sort3,10)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM