Hi Leon,
great idea. Modified it a little bit for my purpose.
df.help <- read_delim("../data/fallexport.csv",
delim = ";",
escape_double = FALSE,
locale = locale(
date_names = "de",
decimal_mark = ",",
grouping_mark = ".",
encoding = "ISO-8859-1"
),
trim_ws = TRUE
)
c_names <- colnames(df.help)
numbers <- seq(1:length(c_names))
df.colnumbers <- data_frame(c_names,numbers)
That gives me a data frame with column- names and numbers. Thats what I need when I am looking for the position of a specific column within the csv. file