Posts by Manoel Galdino • 191 points
3 posts
-
1
votes1
answer923
viewsA: Data containment <- R
For registration only, it is quite easy to do this with the dplyr package (se that a data frame, since it does not work with vector). library(dplyr) v1 <- data.frame(num=c(543, 543, 543, 675,…
-
4
votes0
answers85
viewsQ: Install patch pro R
As documented here, R’s iconv function does not work satisfactorily. Fortunately, a patch has been developed that solves the problem (apparently). My question is basic: how do I install the patch?…
-
1
votes1
answer5140
viewsA: Loading Rdata files from the file directory itself . R
R looks for the file in its default directory. To change the default directory, see ?setwd. In your case, try: setwd('/Downloads/') or setwd('~/Downloads/') Update my reply, after comments: Open…