From this code:
require(readr)
readK6 <- read_csv("./data/K6.csv.zip",
col_types = c("character", "numeric"))
I'm getting:
Error: Unknown shortcut: h In addition: Warning message: Missing column names filled in: 'X1' 1
When trying to load this dataset.
Any ideas?
edit: I want the first col to read as char and
readK6 <- read_csv("./data/K6.csv.zip",
col_types=cols(
s = col_character(),
x = col_double()
)
)
ain't working either.