This question is maybe a little too cute, but I have always found startup profile files of other people both useful and instructive about the language. Moreover, while I have some customization for bash and vim, I have nothing for R. For example, one thing I always wanted is different colors for input and output text in a window terminal, and maybe even syntax highlighting.
|
feedback
|
|
Here is mine. It won't help you with the coloring but I get that from ESS and Emacs...
| ||||
feedback
|
|
I hate to type the full words 'head', 'summary', 'names' every time, so I use aliases. You can put aliases into your .Rprofile file, but you have to use the full path to the function (e.g. utils::head) otherwise it won't work.
EDIT: to answer your question, you can use the colorout package to have different colors in the terminal. Cool! :-) | |||||||||||||||||
feedback
|
|
Here's mine. I always use the main cran repository, and have code to make it easy to source in-development package code.
| ||||
|
feedback
|
Although I don't actually have that in my .Rprofile, because it might breaks my coauthors' code, I wish it was the default. Why? 1) Character vectors use less memory (but only barely); 2) More importantly, we would avoid problems such as:
and
Factors are great when you need them (e.g. implementing ordering in graphs) but a nuisance most of the time. | |||||||
feedback
|
|
I like saving my R command history and having it available each time I run R: In the shell or .bashrc:
in .Rprofile:
| ||||
|
feedback
|
|
I've got this, more dynamic trick to use full terminal width, whick tries to read from the COLUMNS environment variable (on Linux):
This way R will use the full width even as you resize your terminal window. | ||||
|
feedback
|
|
Most of my personal functions and loaded libraries are in the Rfunctions.r script
| |||||||||
feedback
|
|
Thanks for the interesting post! Here is mine. (I stole some of the above snippets and incorporated them into my .Rprofile). Thank you everyone for contributing.
| |||||||||||||||||||
feedback
|
|
Here's from my ~/.Rprofile, designed for Mac and Linux. These make errors easier to see.
I hate the CRAN menu choice, so set to a good one.
More history!
The following is for running on Mac OSX from the terminal (which I greatly prefer to R.app because it's more stable, and you can organize your work by directory; also make sure to get a good ~/.inputrc). By default, you get an X11 display, which doesn't look as nice; this instead gives a quartz display same as the GUI. The
And preload a few libraries,
where util.r is a random bag of stuff I use, under flux. Also, since other people were mentioning console width, here's how I do it.
This actually isn't in | |||||||
feedback
|
|
Mine is not too fancy:
| ||||
|
feedback
|
| |||||
|
feedback
|
|
I often have a chain of debug calls I need to call and uncommenting them can be very tedious. With the help of the SO community, I went for the following solution and inserted this into my
| ||||
|
feedback
|
|
I use the following to get cacheSweave (or pgfSweave) to work with the "Compile PDF" button in RStudio:
| ||||
|
feedback
|
|
I have an environment variable R_USER_WORKSPACE which points to the top directory of my packages. In .Rprofile I define a function devlib which sets the working directory (so that data() works) and sources all .R files in the R subdirectory. It is quite similar to Hadley's l() function above.
| ||||
|
feedback
|
I do a lot of work from mysql databases, so connecting right away is a godsend. I only wish there was a way of listing the avaialble databases so I wouldn't have to remember all the different names. | ||||
|
feedback
|
|
I set my lattice color theme in my profile. Here are two other tweaks I use:
| |||||
feedback
|
|
Here's mine, including some of the mentioned ideas. Two things you might want to look at:
.
| ||||
|
feedback
|
|
Mine includes | ||||
|
feedback
|
|
Stephen Turner's post on .Rprofiles has several useful aliases and starter functions. I find myself using his ht and hh often.
| ||||
|
feedback
|