search for: profilee_ktakahashi

Displaying 5 results from an estimated 5 matches for "profilee_ktakahashi".

2013 Apr 30
1
trace with reference class
...object (instead of the generated object). Has this functionality been removed? best, kohske -- Kohske Takahashi <takahashi.kohske at gmail.com> Assistant Professor, Research Center for Advanced Science and Technology, The University of Tokyo, Japan. http://www.fennel.rcast.u-tokyo.ac.jp/profilee_ktakahashi.html
2011 Jan 15
1
Truetype and Opentype font in pdf device
...support fontfamily, hence I cannot use it through gpar. Does anyone know about this topic? Thank you in advance. -- Kohske Takahashi <takahashi.kohske at gmail.com> Research Center for Advanced Science and Technology, The University of ?Tokyo, Japan. http://www.fennel.rcast.u-tokyo.ac.jp/profilee_ktakahashi.html
2012 Apr 05
1
using for loops with ggplot
Hi all, I have been using ggplot for a few months and ran into this porblem, I am trying to use ggplot in a for loop and it is not working. if I do the following: data=as.data.frame(cbind(rnorm(10),rnorm(10),rnorm(10))) ############ pp=ggplot(data, aes(x=(1:10), y=data[,1])) pp=pp+geom_line(aes(x=(1:10),y = data[,1]),lty=2) pp=pp+geom_line(aes(x=(1:10),y = data[,2]),lty=2)
2012 Mar 28
1
rep with bigz in gmp
...x 3 matrix: [,1] [,2] [,3] [1,] 1 2 3 [2,] 2 4 6 [3,] 3 6 9 thanks in advance. kohske -- -- Kohske Takahashi <takahashi.kohske at gmail.com> Research Center for Advanced Science and Technology, The University of ?Tokyo, Japan. http://www.fennel.rcast.u-tokyo.ac.jp/profilee_ktakahashi.html
2012 Jul 12
1
Modifying a list: what gets copied?
Hi all, In my continued effort to understand when and what R copies, I've designed a small experiment to try and figure out what goes on when a list gets copied - is it a shallow copy or a deep copy. I believe the following experiment isolates the difference: options(digits = 2) powers <- 4:6 n <- setNames(10 ^ powers, paste0("e", powers)) xs <- lapply(n, seq_len) zs <-