I want to read all files of the same format in the .txt format folder and get 1 data.frame. I know how to do this for .CSV (example below), but not for .TXT. Thanks to everyone who tells me)
temp <- list.files(pattern="*.csv")
Inst_test_Jule <- lapply(temp, read_csv) %>%
rbind.fill(Inst_test)
For read once file in txt format I use
Ffact <- read.table("T:/test/work 0217.asc")
and I have
V1
<dbl>
V2
<dbl>
V3
<dbl>
V4
<dbl>
87406 2041 6779 20743
87407 2014 6778 21553
87408 2041 6780 20743
87409 2041 6781 20743
87410 2041 6782 20743
87411 2014 6778 21553
I load my file in cloud too...below in the comment