Displaying 5 results from an estimated 5 matches for "stat_boxplot".
2010 Mar 10
2
ggplot2: "varwidth"-equivalent for geom_boxplot?
Hi,
Is there such a thing? If no: is it easily simulated?
thanks, Joh
2010 Feb 14
2
Problems with boxplot in ggplot2:qplot
...have problems with it. lattice package to the rescue?
> qplot(factor(month), balance, data = closed, geom = "boxplot", xlim =
> range(closed$month))
There were 13 warnings (use warnings() to see them)
> warnings()
Warning messages:
1: Removed 1 rows containing missing values (stat_boxplot).
2: Removed 7 rows containing missing values (geom_point).
3: Removed 5 rows containing missing values (geom_point).
4: Removed 8 rows containing missing values (geom_point).
5: Removed 3 rows containing missing values (geom_point).
6: Removed 5 rows containing missing values (geom_point).
7: Remo...
2008 Apr 04
0
ggplot2 - version 0.6
...ble with a single level (thanks to Bob
Muenchen for pointing this out!)
* stat_bin: no longer incorrectly warns that binwidth is unspecified
when breaks are set
* stat_bin: now takes origin argument to manually specify origin of
first bin (default is round_any(min(range), bin_width, floor))
* stat_boxplot, stat_contour, stat_density2d, stat_qq, stat_density:
na.rm parameter added to the following statistics (thanks to Leena
Choi for suggesting this)
* stat_function: new, makes it easy to superimpose a function on the plot
* stat_qq: axes flipped to agree with base R
* stat_qq: now uses sample...
2008 Apr 04
0
ggplot2 - version 0.6
...ble with a single level (thanks to Bob
Muenchen for pointing this out!)
* stat_bin: no longer incorrectly warns that binwidth is unspecified
when breaks are set
* stat_bin: now takes origin argument to manually specify origin of
first bin (default is round_any(min(range), bin_width, floor))
* stat_boxplot, stat_contour, stat_density2d, stat_qq, stat_density:
na.rm parameter added to the following statistics (thanks to Leena
Choi for suggesting this)
* stat_function: new, makes it easy to superimpose a function on the plot
* stat_qq: axes flipped to agree with base R
* stat_qq: now uses sample...
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame.
For instance
> ddTable <-
data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry"))
I want a dataset that is
Id Name
1 Paul
2 Bob
> unique(ddTable)
Will give me all 4 rows, and
> unique(ddTable$Id)
Will give me c(1,2), but not accompanied by the name column.