I am trying to get Favstats to work. I am using a "normal" Dataset with numeric variables that I have loaded in with:
ALLBUS2018 <- read.csv("~/Desktop/ALLBUS2018.csv", sep="")
When I use Favstats on one of the variables the following happens:
fav_stats(~ ep01, data = ALLBUS2018, na.rm = TRUE)
Fehler in fav_stats(~ep01, data = ALLBUS2018, na.rm = TRUE) :
Objekt 'pairlist' kann nicht nach 'double' umgewandelt werden
Zusätzlich: Warnmeldung:
In fav_stats(~ep01, data = ALLBUS2018, na.rm = TRUE) :
Auto-converting formula to numeric.
I have re-installed the Dataset and deleted R completly. A friend of mine gets a correct output with the same input and no other data in R. I have tried as.numeric and sapply(ALLBUS2018, function(txt) eval(parse(text=txt))) Here you see another Error Message I got
Here you can find the data used: https://www.dropbox.com/s/fa9hplvk2j6q1cl/ALLBUS2018.csv?dl=0
Thanks for your help! HS
You're making two mistakes
Your file is not a
.csv
- it's plaintext delimited by spaces, rather than commas. For this reason,read.csv
is returning a column vector of massive strings.Your syntax is wrong inside
mosaic::fav_stats
- you should be doingALLBUS2018$ep01
, rather than~ep01, data = ALLSBUS2018
, which is interpreted asfav_stats(x = ~ep01, data = ALLBUS2018)
. In this case,x
is the wrong type (a formula object) and data is passed as an additional argument via...
and subsequently ignored. Check the help via?mosaic::favstats
for more info on this.This code should work
The names in your file are hard to read through the default
read.table
methods, so I've done that in a separate step.Created on 2021-01-23 by the reprex package (v0.3.0)