Displaying 4 results from an estimated 4 matches for "peltiertech".
2009 Oct 09
2
Creating a Clustered-Stacked Column Chart
Hi all,
In R, is there some functions or ways to create a Clustered-Stacked
Column Chart as the example in the following page
http://peltiertech.com/Excel/ChartsHowTo/ClusterStack.html?
I have browsed the R Graph Gallery (http://addictedtor.free.fr/graphiques/)
and searched the R site, and didnot find an appropriate method to do it.
Anybody has met this problem before?
Thanks a lot.
[[alternative HTML version deleted]]
2010 Jan 20
1
R arithmetic probability plot
I am hoping to create a graph that will look like it is plotted on
arithmetic probability plot. Something similar to how this is done in Excel:
http://peltiertech.com/Excel/Charts/ProbabilityChart.html.
I can't quite find a code that will transform the linear axis into a
cumulative percent axis with an arithmetic probability. And I am not good
enough at R to do that myself.
Any help will be greatly appreciated.
--
Natalia S Slobodina
Graduate Studen...
2010 Feb 11
1
Dual Category X-Axis (Multi-Level)
Hello,
I was wondering if anyone knows of a way to produce multilevel x-axis groupings similar to Excel's pivotcharts. (If you're not sure what I'm talking about, here's an example: http://peltiertech.com/WordPress/chart-with-a-dual-category-axis/).
I realize that I could use mtext to manually insert text where desired, but I was hoping for a more systematic approach.
Thanks in advance,
-eric
[[alternative HTML version deleted]]
2018 Apr 29
1
Overlay line on a bar plot - multiple axis
Dear all,
I am trying to make a similar plot -
https://peltiertech.com/images/2013-09/BarLineSampleChart4.png.
I have data for two variables; count and z by city and week. I would like
to have a horizontal bar plot of *count* by city and a line plot of weekly
average of the variable *z*.
I have tried the following:
ggplot() + geom_bar(data=dat, aes(x=city, y=co...