http://vanintothewild.fr/traversee-alpes-a-velo-duo/15941221_1840932349522287_4065434587325471509_n/feed Showing the document statistics
Select a text block.
g and Ctrl-g
Blog
-
Showing the document statistics Select a text block…
-
Keep the cursor in the middle of the…
Keep the cursor in the middle of the screen in Vi
set scrolloff=10
The command keeps the cursor in the area which is off 10 lines from the top and 10 lines from the bottom.
If the number is big enough, then the cursor stays in the middle while typing.set so=100
The exception is at the beginning and the end of a file where the cursor moves to the first or the last line.
-
LOESS Fit a polynomial regression fitting
LOESS: Fit a polynomial regression fitting
-
How to install R packages from the source…
How to install R packages from the source
install.packages(file_name_and_path, repos = NULL, type="source")
-
Computational biology in Microsoft Research http research microsoft…
Computational biology in Microsoft Research
http://research.microsoft.com/en-us/groups/biology/default.aspx -
Datamining http datamining typepad com data mining
Datamining
http://datamining.typepad.com/data_mining/ -
Fitting distribution in R Use fitdistr in MASS…
Fitting distribution in R
Use fitdistr in MASS package
Example;
fitdistr(as.vector(res.score.m), densefun = 'normal') mean sd -8.0647926561 2.9550064789 ( 0.0005642286) ( 0.0003989698)http://www.statmethods.net/advgraphs/probability.html
-
Network visualization tool http://gephi …
Network visualization tool
http://gephi.org/ -
Print summary results or other outputs o …
Print summary results or other outputs on the R plot
Use capture.output.
summary.text <- paste(capture.output(summary(avg.score.per.pos)), collapse="\n") mtext(summary.text)
-
Differences between do.call and lapply …
Differences between do.call and lapply
Consider this. If L is a list with n components then– do.call(f, L) calls f once
– lapply(L, f) calls f n timeshttps://stat.ethz.ch/pipermail/r-help/2007-April/129252.html