Force SSH Client To Use Given Private Key ( identity file )
Recently, my desktop hard disk crashed. So I reinstalled Linux and created a new set of private RSA keys for authentication. However, two of my…
View More Force SSH Client To Use Given Private Key ( identity file )Updating R from R (on Windows) – using the {installr} package
Upgrading R on Windows is not easy. While the R FAQ offer guidelines, some users may prefer to simply run a command in order to…
View More Updating R from R (on Windows) – using the {installr} packageLinux Partition HOWTO
5. Partitioning with fdisk This section shows you how to actually partition your hard drive with the fdisk utility. Linux allows only 4 primary partitions.…
View More Linux Partition HOWTOUsing Loops with ggplot2
http://reed.edu/data-at-reed/resources/R/loops_with_ggplot2.html library(stringr) library(reshape2) library(ggplot2) library(ggthemes) library(pander) # update this file path to point toward appropriate folders on your computer # folder where you want the…
View More Using Loops with ggplot2Mutiple Dataframes within Lists from the start
Lists from the start Again: Don’t ever create d1 d2 d3 in the first place, just create a list d with 3 elements. Reading multiple…
View More Mutiple Dataframes within Lists from the startDates and Times in R
Dates and Times in R R provides several options for dealing with date and date/time data. The builtin as.Date function handles dates (without times); the…
View More Dates and Times in RCitation Style Guide…for IEEE, ASCE, ASME, Journals & IEEE Template MS Word, LaTeX Template
Citation styles are standardized systems for crediting and citing sources you’ve used for your research paper or assignment . B.Tech, M.Tech, MCA, Ph.D, B.E, M.E,…
View More Citation Style Guide…for IEEE, ASCE, ASME, Journals & IEEE Template MS Word, LaTeX Templateggplot2 Cheatsheet from R for Public Health
R for Public Health library(ggplot2) library(gridExtra) mtc <- mtcars head(mtc) mpg cyl disp hp drat wt qsec vs am gear carb Mazda RX4 21.0 6…
View More ggplot2 Cheatsheet from R for Public HealthHow to format plots for publication using ggplot2
The following is the code from a presentation made by Rosemary Hartman to the Davis R Users’ Group. I’ve run the code through the spin…
View More How to format plots for publication using ggplot2ggplot2 Quick Reference: Themes
A plot can be themed by adding a theme. ggplot2 provides two built-in themes: theme_grey() – the default theme, with a grey background theme_bw() –…
View More ggplot2 Quick Reference: Themes