documents:111012rtricks
Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| documents:111012rtricks [2011/10/12 15:12] – created kota | documents:111012rtricks [2020/11/26 07:08] (current) – kota | ||
|---|---|---|---|
| Line 4: | Line 4: | ||
| When you import data from the out put of other software, you might have trailing 0s at the end of each column: | When you import data from the out put of other software, you might have trailing 0s at the end of each column: | ||
| - | < | + | <code:R> |
| > d0 | > d0 | ||
| [1] 69.444 70.889 86.667 95.667 83.444 78.333 67.889 | [1] 69.444 70.889 86.667 95.667 83.444 78.333 67.889 | ||
| Line 18: | Line 18: | ||
| </ | </ | ||
| To remove them, there could be many ways, but here is my one liner. | To remove them, there could be many ways, but here is my one liner. | ||
| - | <code R> | + | <code:R> |
| d0c <- d0[rev(cumsum(rev(d0)))> | d0c <- d0[rev(cumsum(rev(d0)))> | ||
| </ | </ | ||
| Line 30: | Line 30: | ||
| [29] 18.000 21.778 23.556 23.889 28.778 40.000 48.667 | [29] 18.000 21.778 23.556 23.889 28.778 40.000 48.667 | ||
| [36] 55.889 66.667 78.889 72.222 84.778 68.778 69.444 | [36] 55.889 66.667 78.889 72.222 84.778 68.778 69.444 | ||
| + | </ | ||
| + | |||
| + | ===== Plotting a matrix data as a color-coded image ===== | ||
| + | |||
| + | < | ||
| + | #a 2Dplot, color coded. | ||
| + | x <- c(1:20) | ||
| + | y <- c(1:10) | ||
| + | for(j in y){ | ||
| + | for(i in x){ | ||
| + | val <- i+j | ||
| + | if((i == 0) & (j == 0)) z <- val | ||
| + | elsez <- append(z, val) | ||
| + | } | ||
| + | } | ||
| + | |||
| + | z <- matrix(z, nrow=20, ncol=10) | ||
| + | mat <- list(x, y, z) | ||
| + | image(x, y, z) | ||
| + | </ | ||
| + | |||
| + | [{{: | ||
| + | |||
| + | ... a bit faster way calculation wise uses indexing. | ||
| + | < | ||
| + | width <- 10 | ||
| + | height <- 20 | ||
| + | x <- c(1:width) | ||
| + | y <- c(1:height) | ||
| + | xindex <-rep(x, length = width*height) | ||
| + | yindex <- yindexing(x, | ||
| + | |||
| + | z <- xindex + yindex | ||
| + | |||
| + | z <- matrix(z, nrow=width, ncol=height) | ||
| + | mat <- list(x, y, z) | ||
| + | image(x, y, z) | ||
| + | |||
| + | yindexing <- function (x, y) { | ||
| + | for(i in y){ | ||
| + | cr <- rep(i, length=length(x)) | ||
| + | if (i==1) all <- cr | ||
| + | else all <- append(all, cr) | ||
| + | } | ||
| + | return (all) | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | ===== Inserting math formula & symbols in label or title ===== | ||
| + | |||
| + | The easiest way is to use function // | ||
| + | < | ||
| + | plot(back$V2, | ||
| + | </ | ||
| + | Inserts vertically centered dot in the x label between " | ||
| + | < | ||
| + | ?plotmath | ||
| + | </ | ||
| + | |||
| + | More recent, but under development is using [[http:// | ||
| + | |||
| + | ===== Variable Name to String ===== | ||
| + | |||
| + | < | ||
| + | myfunc <- function(v1) { | ||
| + | deparse(substitute(v1)) | ||
| + | } | ||
| + | |||
| + | myfunc(foo) | ||
| + | [1] " | ||
| </ | </ | ||
documents/111012rtricks.1318432340.txt.gz · Last modified: 2016/05/24 12:46 (external edit)
