Posts by DATAUNIRIO • 9 points
4 posts
-
0
votes1
answer71
viewsA: Error in Webscraping process Youtube videos on R - NA' does not exist in Current Working directory
Hi, I don’t understand very well. do you want the comments or subtitles? If it is the subtitles, there is an R package for this. # https://github.com/jooyoungseo/youtubecaption…
-
0
votes2
answers1362
viewsA: Warning message: Those introduced by coercion
I believe your numbers have commas in them (for example, 1,234). Hint: first make your factors "clean" with: t2019_12$VA.VG <- gsub (",",t2019_12$VA.VG) then execute the command: t2019_12$VA.VG…
ranswered DATAUNIRIO 9 -
-1
votes2
answers99
viewsA: Remove NA from a csv in R
you have tried the drop_NA of the tidyr package? library(dplyr) library(tidyr) df <- Tibble(x = c(1, 2, NA), y = c("a", NA, "b")) df %>% drop_na()
-
1
votes3
answers291
viewsA: In R, what is a Tibble?
"Tibble are data.frames, but they adjust some old behaviors to make life a little easier". R is an old language, and some things that were useful 10 or 20 years ago are now getting in the way…