search for: __filename__

Displaying 1 result from an estimated 1 matches for "__filename__".

Did you mean: __file_name__
2002 Jun 10
2
Crashing R (PR#1651)
Concerns: R 1.5.0 gui version, Windows (downloaded binary) and Linux (installed from sources). # Load the data from the attached file: kk<-read.table("__filename__", header=1) # attach the data: attach(kk) Snr<-factor(Snr) # fool around with a call to anova.glm(): anova.glm( aov( nFD~Type+size+Modality+Error(Snr/(Type+size+Modality)) ) ) # Error: object nFD not found # Well, I thought I had attached that. Anyway: anova.glm(aov( nFD~Type+size+Modality+...