I have 100 JSON files contain approximately 800,000 tweets. How can I parse all files at the same time using R in order to clean it?
            Asked
            
        
        
            Active
            
        
            Viewed 41 times
        
    0
            
            
        - 
                    Where's your code? Please see [Ask]. You also didn't even bother to take the 2-minute site [tour]. – T-Heron Jan 12 '17 at 02:22
- 
                    This is my code for one file, but I am asking about how to parse multiple files at the same time tweets <- parseTweets("C:\\Users\\Mohammed\\Documents\\testtweets\\tweetnew") – Mohammad Al-Antary Jan 12 '17 at 02:25
- 
                    `lapply` across a vector of filenames (which you can probably create with `list.files`). – alistaire Jan 12 '17 at 02:51
- 
                    Also see [Gregor's excellent canonical answer](http://stackoverflow.com/a/24376207/4497050). – alistaire Jan 12 '17 at 03:00
