I have a dataset that contains loads of tweet-IDs and user-IDs from Twitter. When loading the dataframe in R it projects the numbers e.g. like this "1.236967e+18". Since it is not a number but an ID i need the complete numbers in order to download the tweet texts from the IDs. I tried this:
daytwo <- read.table(file = 'ids_2020-03-09.csv', sep = ';', header = TRUE, as.is = !stringsAsFactors)
However I get the error that it cannot find stringsAsFactors. I assumed that that argument was the key to project the complete numbers
Error in read.table(file = "ids_2020-03-09.csv", sep = ";", header = TRUE, :
Object 'stringsAsFactors' not found
If I dont add the stringsAsFactors argument it imports the data with the +18 projection. How can I change that for the whole dataset at once? I already tried to make changes in Excel but R always changes it back when importing. Thanks!