Whenever I open my R Project, it is keep on popping the statement"Fata error: unexpected exception: string too long" and I can't go beyond that.
I need an easy solution to this issue as I am still learning the basics of R.
I am using R studio version 4.3.0 (2023-04-21 ucrt) -- "Already Tomorrow"
R Program: version 4.3.0
Here is the script (its related to temperature and precipitation from 1991 to 2020:
install.packages("readr")
library("readr")
TP1 <- read_csv("E:/HUC/20-08/TP-1991_2020_PAK.csv")
View(TP1)
str(TP1)
dim(TP1)
head(TP1)
tail(TP1)
head(TP1$Temperature)
TP1$Rainfall - (MM)
Rainfall<-Rainfall - (MM)`
Thank you in advance for your help.