if (FALSE) {
# Read a plain text SHARK export
df_txt <- read_shark("sharkweb_data.txt")
# Read a SHARK export from a zip archive
df_zip <- read_shark("shark_data.zip")
# Read with explicit encoding and do not convert value
df_custom <- read_shark("shark_data.txt",
encoding = "latin_1",
guess_encoding = FALSE,
value_numeric = FALSE)
}
Run the code above in your browser using DataLab