search for: c_mean

Displaying 2 results from an estimated 2 matches for "c_mean".

Did you mean: _mean
2000 Oct 02
9
the underscore ("_") in variable name
At 14:35 02/10/00 +0800, mohd zamri wrote: >new to R and starting to learn to program R. The underscore ("_") did some >suprising result. e.g > >> c <- c(1,2,3,4,5) >> mean(c) >[1] 3 >> c_mean <- mean(c) >> c >[1] 3 > >having some experience in C, I thought the underscore is "always" valid in >variable name. totally confuse me. Reread the R-FAQ a few times, and found >on pg. 7 foot-note which states that; > > the underscore character "_&quot...
2000 Oct 02
1
FW: the underscore ("_") in variable name
...half Of mohd zamri Sent: 2. oktober 2000 08:36 To: r-help at stat.math.ethz.ch Subject: [R] the underscore ("_") in variable name new to R and starting to learn to program R. The underscore ("_") did some suprising result. e.g > c <- c(1,2,3,4,5) > mean(c) [1] 3 > c_mean <- mean(c) > c [1] 3 having some experience in C, I thought the underscore is "always" valid in variable name. totally confuse me. Reread the R-FAQ a few times, and found on pg. 7 foot-note which states that; the underscore character "_" is an alllowable synonym for t...