I'm a newbie in R. Is there anyone who can help me?
I import a CSV of extract of stackoverflow data from,
s <- read_csv("https://www.ics.uci.edu/~duboisc/stackoverflow/answers.csv")
Then, I separate different values in 'tags' column into rows,
ss1 <- separate_rows(ss, tags)
Then, I apply pivot_wider()
on 'tags' column,
ss2 <- pivot_wider(ss1, names_from = tags, values_from = qs)
The following error messages are shown,
Error: Internal error in
compact_rep()
: Negativen
incompact_rep()
. Runrlang::last_error()
to see where the error occurred. In addition: Warning messages: 1: Values are not uniquely identified; output will contain list-cols.
- Use
values_fn = list
to suppress this warning.- Use
values_fn = length
to identify where the duplicates arise- Use
values_fn = {summary_fun}
to summarise duplicates 2: In nrow * ncol : NAs produced by integer overflow
I have searched the different keywords in these messages but am not able to find out the overall meaning of these errors. Is there anyone who can help me? Thanks.