Displaying 4 results from an estimated 4 matches for "cambre".
Did you mean:
cambie
2012 Jan 03
4
Changing X axis of ggplot
Thanks to Joshua Wiley for turning me on to ggplot2.
I am making a plot using this:
p <- ggplot(dallas, aes(x = offense_hour)) + geom_bar() + coord_polar()
Dallas is a data frame, and offense_hour is a column with chron
objects from the chron library. In this case, the chron object was
created with the times function. It is only a time (H:M:S) with no
date attached.
The plot shows up fine,
2012 Jan 04
2
Allow HTML email on R-Help
Is it possible to allow HTML email on R-Help?
HTML email is mainstream and would really help with code markup and
embedded graphics.
Just a thought. It's frustrating dealing with the low usability of plain text.
Aren
2008 Oct 17
1
missing Rversion.h and Rconfig.h when installing RSQLite under FC8
Hello,
I am having problems installing RSQLite under FC8. The error message
seems to indicate Rversion.h and Rconfig.h are missing. To illustrate
the problem, I have copied below the output shown when I first install R
(binary distribution) and then try to install RSQLite. Because the
problem does not occur when installing RSQLite with R under Windows I
suspect the problem is perhaps due to my
2011 Dec 31
1
Histogram omitting/collapsing groups
I have two large datasets (156K and 2.06M records). Each row has the
hour that an event happened, represented by an integer from 0 to 23.
R's histogram is combining some data.
Here's the command I ran to get the histogram:
> histinfo <- hist(crashes$hour, right=FALSE)
Here's histinfo:
> histinfo
$breaks
?[1] ?0 ?1 ?2 ?3 ?4 ?5 ?6 ?7 ?8 ?9 10 11 12 13 14 15 16 17 18 19 20 21