Hi, I'm not sure if this is a bug or not, so I wanted to ask first and see if im doing something wrong. I am trying to use open_dataset to read a directory full of csv files. The code is:
``` path = './some_dir/' dfs = open_dataset(path, format = 'csv') ``` sessionInfo(): R version 3.6.3 (2020-02-29) Platform: x86_64-pc-linux-gnu (64-bit) Running under: Ubuntu 18.04.4 LTS and my version of arrow: arrow_1.0.0 The default install of arrow gave me arrow_0.16.0 so I had to manually upgrade to 1.0.0. Additionally, the default version DID NOT accept *csv* as an argument to format. After upgrading it seems to accept it now, however, when I 'collect()' the data and perform an operation like 'count()' it returns nothing, i.e an empty tibble. Am I missing something? Thanks for the help. -- Gary Clark *Data Scientist & Data Engineer* *B.S. Mechanical Engineering, Howard University '13* +1 (717) 798-6916 [email protected]
