rlist question - not sure what I am doing wrong

Not sure what I am doing wrong here - using the package "rlist" to filter in a directory I want and load it.
files is my directory with the files I want to import


files %>>% 
  list.filter(str_detect(.,"July_2020")) %>>% 
  list.map(read.csv)

error message is 


```r
<environment: namespace:utils>

$JulyFile.csv
function (file, header = TRUE, sep = ",", quote = "\"", 
    dec = ".", fill = TRUE, comment.char = "", ...) 
read.table(file = file, header = header, sep = sep, quote = quote, 
    dec = dec, fill = fill, comment.char = comment.char, ...)
<bytecode: 0x0000027021b947f8>
<environment: namespace:utils>

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.