Displaying 1 result from an estimated 1 matches for "cn_best".
Did you mean:
cc_test
2011 Jun 07
0
tab-completion + running R from gedit
...to
linux (ubuntu 10.4, 64-bit).
I'm using gedit 2.30.3 and GNOME Terminal 2.30.2
Everything works fine, except that occasionally gedit and/or the terminal
seem to behave strangely.
For example:
Thr_min <- 0
Thr_max <- 10
Thr_grid <- seq(from=Thr_min,to=Thr_max,length=101)
cn_best <- 34
Thr <- Thr_grid[cn_best]
which gives output
> Thr_min<- 0
> Thr_max<- 10
> Thr_grid<- seq(from=Thr_min,to=Thr_max,length=101)
> cn_best<- 34
> Thr_<- Thr_grid[cn_best]
Hence, I end up with a variable Thr_ instead of Thr
Apparently this happ...