Tagged Questions
6
votes
3answers
566 views
Reproducing lattice dendrogram graph with ggplot2
Is this possible to reproduce this lattice plot with ggplot2?
library(latticeExtra)
data(mtcars)
x <- t(as.matrix(scale(mtcars)))
dd.row <- as.dendrogram(hclust(dist(x)))
row.ord <- ...
5
votes
1answer
944 views
display values in stacked lattice barchart [R]
I want to display the values of a 100% bar for each part of it. Unfortunately I don't know how to do it. The graph should be in lattice because of the legend position (I tried it with ggplot2, but ...
4
votes
4answers
3k views
R: how to change lattice (levelplot) color theme?
The default theme on my installation is something which maps the values to pink and cyan. How to change it for example to a gray scale theme?
2
votes
2answers
600 views
spplot() - make color.key look nice
I'm afraid I have a spplot() question again.
I want the colors in my spplot() to represent absolute values, not automatic values as spplot does it by default.
I achieve this by making a factor out ...
2
votes
1answer
270 views
country-labels on spplot()
I'd like to add name-labels for regions on an spplot().
Example:
load(url('http://gadm.org/data/rda/FRA_adm0.RData'))
FR <- gadm
FR <- spChFIDs(FR, paste("FR", rownames(FR), sep = "_"))
...
1
vote
2answers
109 views
R 3D plot axis tick labels
I'm plotting a 3D histogram in R using the method from figure 6.15 here.
I've set scale = list(arrow=F), so that I have tick marks instead of arrows on each axis.
The plot looks fine, but I want to ...
1
vote
2answers
396 views
Combined Column Graph and Line Graph with Different Y Axis
Is it possible to create a combined column graph and line graph with different Y axis like you can in Excel? I want to automate the production of graphs where the line graph is the Good -Bad ratio and ...
1
vote
1answer
1k views
Adding lines and labels in lattice barchart [R]
I have two questions concerning customizing a barchart in lattice. I tried to add labels to the barchart respectively edit the scale, but my code doesn't work. What I'm doing wrong? There should be ...
1
vote
3answers
279 views
Lattice problems: lattice objects coming from JAGS, but device can't be set
I ran JAGS with runjags in R and I got a giant list back (named results for this example). Whenever I access results$density, two lattice plots (one for each parameter) pop up in the default quartz ...
0
votes
1answer
150 views
R package lattice won't plot if run using source()
I started using the lattice graphic package but I stumbled into a problem. I hope somebody can help me out.
I want to plot a histogram using the corresponding function.
Here is the file foo.r:
...