Displaying 1 result from an estimated 1 matches for "variableswithlongnames".
2010 May 05
3
Limitations on R code file
I would like to run R code from a file that is generated from other source.
The file consists of some variables and formulas/equations such as
Variables = log(100)
##Other variable definitions
VariablesWithLongNames = 2*3*log(12345678)+10^4 + Variables
Equations=log(VariablesWithLongNames)+Variables^2
##Other equations, formulas
Result = Equations^2+rnorm(10000)
hist(Result,breaks=100,freq=FALSE)
lines(density(Result),col = "blue")
The file may be very long and some variable names may be very long t...