Re: [R] read_csv not recognized

2021-03-08 Thread Carlos Gonzalez
Thank you! The problem was that tidyverse has not been loaded correctly. Sorry! El lun, 8 de mar. de 2021 a la(s) 18:24, Eric Berger (ericjber...@gmail.com) escribió: > Hi Carlos, > That is strange. The function read_csv is in the readr package. > You could try > > library(readr) > readr::read_c

Re: [R] read_csv not recognized

2021-03-08 Thread Eric Berger
Hi Carlos, That is strange. The function read_csv is in the readr package. You could try library(readr) readr::read_csv(etc) Let us know what happens. Eric On Mon, Mar 8, 2021 at 3:57 PM Hasan Diwan wrote: > function (file, col_names = TRUE, col_types = NULL, locale = > default_locale(), >

Re: [R] read_csv not recognized

2021-03-08 Thread Hasan Diwan
function (file, col_names = TRUE, col_types = NULL, locale = default_locale(), na = c("", "NA"), quoted_na = TRUE, quote = "\"", comment = "", trim_ws = TRUE, skip = 0, n_max = Inf, guess_max = min(1000, n_max), progress = show_progress(), skip_empty_rows = TRUE) { tokenizer <-

[R] read_csv not recognized

2021-03-08 Thread Carlos Gonzalez
Hi everybody, I've load tidyverse: library(tidyverse) and then try to use the function read_csv() but it didn't recognize it. Thanks! -- Saludos / Regards Carlos A. Gonzalez Mobile +598 94 234 653 cag...@gmail.com [[alternative HTML version deleted]] __