Tagged Questions
0
votes
1answer
49 views
grid.arrange or the like with John Fox's effects plots
I'd like to combine multiple effect plots in one window with the effects package, but don't know if there is an easy way to do so.
Here's an example that doesn't work:
d1 ...
0
votes
1answer
46 views
How to create lattice plot title with new line, italics and variable names in R
I've been trying to add a title (via main) to a map created with spplot that consists of two lines of text, but with the second line italicised. The text in each line is drawn from a variable name. ...
3
votes
2answers
105 views
plotting monthly and yearwise weather data in r
I am trying to develop a weather plot like that appears in weather data - something like.
I want to plot daily value (although average value can appear in circle). I am using ggplot2 as it need ...
6
votes
1answer
68 views
Feeding data frame columns to xyplot panel functions
I am using xyplot on a data frame and want to feed a panel function with data that is not the (x,y, ...) arguments, but some additional column of the data frame (say k in the example below):
...
1
vote
1answer
45 views
How can I change the color of the header in a xyplot?
have a question concerning a xyplot: how can i change the color of the header?!?! In case, this ugly light-orange color! Thank you in advance.
library(lattice)
x <- c(1:10, 1:10)
y <- c(10:1, ...
0
votes
1answer
80 views
Plot multiple quantil regression lines with lattice R quantreg
I want to plot several quantil regression lines (quantreg package) like this:
library(quantreg)
data(engel)
attach(engel)
plot(income, foodexp, cex = 0.25, type = "n",
xlab = "Household ...
0
votes
1answer
92 views
customizing grid for dotchart in ggplot2?
How can I plot a dotchart like lattice's dotchart in ggplot2 that has thicker grid lines and only horizontal grid lines (ie remove the vertical grid lines), kind of like this:
Except make the ...
0
votes
1answer
97 views
Controlling percentage axis and adding values to HH Likert plot
Consider the following minimal example:
tab = structure(c(187, 189, 205, 167, 273, 275, 295, 231, 385, 575,
409, 363, 899, 707, 751, 667, 2007, 1953, 2101, 2531, 1043, 1023,
1071, 971, 385, 575, ...
0
votes
1answer
158 views
Arrange and size multiple plots in Lattice R
I want to plot three plots vary close together, so they appear as one field. My data are arrays with different dimensions.
Here is some example code to display my problem:
library(lattice)
...
0
votes
3answers
120 views
Graph data in pairs as segments [closed]
I am attempting to plot pairs of points because this is the format in which they occur. This data describes commercial parts (electronic components) whose behavior is described as ranging between two ...
2
votes
3answers
242 views
R - Creating Scatter Plot from Data Frame
i've got a data frame all that look like this:
http://pastebin.com/Xc1HEYyH
Now I want to create a scatter plot with the column headings in the x-axis and the respective values as the data points. ...
1
vote
1answer
305 views
how to display a projected map on an R::lattice::layerplot?
summary: I can display a lon-lat map on a lattice::layerplot, and I can display a Lambert conformal conic (LCC) map on a spam::image. How to display an LCC map on a lattice::layerplot? Examples of how ...
3
votes
2answers
174 views
plot overlapping positions from different files in R
I have a two big files with Start and End positions and two sample columns (numeric).
File 1:
Start End Sample1 Sample2
1 60 1 4
100 200 2 1
201 250 1 ...
2
votes
2answers
86 views
How do I vary colors on a non-grouping factor in R's lattice barcharts?
I'm trying to plot data in a barchart using lattice graphics. I'd like to sort the bars by one factor and group by another (i.e., position by the first factor and contrast within position by the ...
4
votes
1answer
86 views
Removing per-panel unused factors in a bar chart with nested factors
Some time ago I asked a question on how to remove unused factors in a bar chart, and I got a useful solution for that problem, thanks to @Aaron. Now, I am facing a very similar problem, but the ...
1
vote
3answers
115 views
Setting the plot's scale limits for data sets containing variables with different degrees of variability
I have a data frame where some variables present little relative variation and some others present a high variation. For instance, consider the following data frame:
df <- data.frame(IDX = 1:10, ...
5
votes
1answer
268 views
changing layout of boxplot and adding labels to it
I want to (got suggestion to do so) create boxplot with different look and added labels to it. The expected (not complete) output will look like the following (with every box has quatile labeles) and ...
3
votes
3answers
423 views
Creating a scatter plot for multiple rows in R
I have a data frame that looks something like this:
Samp1 Samp2 Samp3 Samp4 Samp5
Gene1 84.1 45.2 34.3 54.6 76.2
Gene2 94.2 12.4 68.0 75.3 ...
2
votes
1answer
124 views
How to place text after symbol in auto.key (lattice)?
When using auto.key in lattice, can I swap the default positions of symbols and text? That is, I'd like the text in the legend to be on the right side with respect to the symbols. I know this is easy ...
0
votes
0answers
96 views
How to change horizontal spaces within legend in lattice?
While there is a padding.text argument for key in lattice to adjust vertical space between rows within the legend, I couldn't find anything similar for the horizontal space between symbol and text, as ...
0
votes
1answer
64 views
Exporting individual pdf's for each plot created from a single file in R (using lattice)
So I have a fairly large dataset of GPS locations corresponding to different individuals at different times. It looks like a more complicated version of this...
...
0
votes
1answer
130 views
Simple plotting function in R
I am having a problem with a plotting function in R. Here is what i got so far.
countries <- c("CHINA ", "UNITED STATES", "UNITED KINGDOM", "GERMANY")
KeyItems <- c("Pretax Income", "Total ...
2
votes
3answers
330 views
Plot xyplot lines correctly after re-ordering factors
When I make xyplot with line connections before reordering factors, it gives me a nice, sequential connections between data points:
library(lattice)
fin <- ...
2
votes
1answer
1k views
How to set panel label font size in lattice graphics in R
I've created a lattice plot with three panels. I can control the font size for the axis and tick labels, but I haven't been able to figure out how to increase the font size of the panel labels. Here's ...
2
votes
1answer
120 views
Removing per-panel unused factors in a bar chart
I am trying to make a plot using barchart from lattice, but I am having some issues with unused factors for a given panel. I have tried using drop.unused.levels but it seems it only drops factors when ...
3
votes
1answer
335 views
Formatting axis labels in lattice plot
How can I change the y-axis labels format to usual (xxx.xxx) instead of scientific, in the following plot?
df <- read.table(textConnection("
ypogr_act amount cumSum
2012-09-20 ...
3
votes
1answer
561 views
“NAs introduced by coercion” when plotting data
I'm using the lattice package in R to plot multiple time series on a single graph. I'm getting the error message "NA introduced by coercion" every time I try to do it. I think the issue is that I ...
0
votes
0answers
132 views
Plotting lines for each variable with lattice
I need some help with xyplot from lattice.
I have my data in a data.frame with columns x and y (to be ploted as such) and then I have variables 'Q' and 'Sample' which I want to plot in a way I have a ...
8
votes
3answers
490 views
Adding stippling to image/contour plot
have some data that I would like to add "stippling" to show where it is "important", as they do in the IPCC plots
At the moment I am really struggling with trying to do this in R.
If I make up ...
0
votes
1answer
448 views
xyplot() in R, spaghetti plot, how to make a tick at a certain point for each individual
Good day,
I am using xyplot() to create a spaghetti plot... for each subject_identifier it plots the score of Y over time.
xyplot(Y~time,groups=subject_identifier,data=c,type=c('l'))
An event ...
0
votes
0answers
114 views
Error accessing 'groups' parameter in xyplot when passing a formula to a function
I am trying to implement a generic plot function that, given a formula and a factor, makes an XY plot (using lattice) from a data frame. The function could separate the data (i.e., generating multiple ...
5
votes
1answer
471 views
Plotting bar plot below xyplot with same x-axis?
I am trying to plot different types of plots (line plot and bar charts) beneath one another, they all have the same axis:
c1 <- ggplot(data, aes(date, TotalMutObs)) + stat_smooth(se = FALSE) +
...
1
vote
2answers
182 views
How can I use levelplot to show data only at observed indices?
I'm trying to make a (lattice) levelplot. I have a data frame whose columns are the i and j spatial coordinates of each value I want to plot, those data values (here, d), and a column named fname ...
5
votes
1answer
197 views
Error bar ticks |--o--| don't draw for more then three conditions in dotplot
This question is an unexpected follow-up from Draw vertical ending of error bar line in dotplot. While the quoted question was succesfully resolved - there is a caveat. When I introduce more then ...
5
votes
2answers
622 views
Draw vertical ending of error bar line in dotplot
I am drawing dotplot() using lattice or Dotplot() using Hmisc. When I use default parameters, I can plot error bars without small vertical endings
--o--
but I would like to get
|--o--|
I ...
0
votes
1answer
526 views
Plotting a rather complex chart using R and axis break()
Hi R users and programmers,
I have a data set consisting of 4563 amino acids of a protein. Using three different treatments and two different oxidants, amino acids in this protein were oxidized. I ...
2
votes
0answers
184 views
R - Change key colours in ancova (HH package)
I'm using the ancova() function in R (HH package) with a factor with more levels than the default 7 colours for lattice graphics.
This means that ancova() fails to plot some of my panels as it can't ...
1
vote
1answer
408 views
R: Levelplot gives extraneous whitespace when range of row.values and column.values is small
When using the levelplot (from lattice package) in R, I noticed that there is extra whitespace around the edges of the graph if the range of column.values and row.values is small (e.g range is less ...
3
votes
1answer
338 views
Creating boxplots in R using lattice for already proccessed data
I am trying to create a a boxplot in R of an extremely large data set. The file containing the data is 2.5G and crashes R if I try to import it. Fortunately some other piece of (python) software can ...
5
votes
2answers
741 views
change background and text of strips associated to muliple panels in R / lattice
The following is the example I work on.
require(lattice)
data(barley)
xyplot(yield ~ year | site, data = barley)
I want to put different strip color for different sprips and font color is also ...
7
votes
2answers
456 views
Can one use polygon() or equivalent in lattice and ggplot2 plots?
Is it possible to annotate lattice (or ggplot2) figures with elements created with polygon() (or elements created with a similar function) from the graphics library?
I'm not too familiar with either ...
1
vote
2answers
152 views
How can I specify arguments by column numbers in bwplot?
This works.
ok <- function(data)
{
lattice:::bwplot(size ~ mxPH, data=data)
}
> ok(algae)
## no error
I'd like to specify size and mxPH by its column numbers. However, the following ...
9
votes
1answer
458 views
Is it possible to update a lattice panel in R?
The update method of trellis plots allows one to modify a lattice plot after the initial call. But the update behaviour is more like replace than append. This differs from the ggplot2 idiom where ...
2
votes
2answers
383 views
How to block a part of the level plot in R made using lattice package?
I have made a level plot in R of a variable using the lattice package. This grid corresponds to South Asia. I am only interested in viewing the values of this variable (aerosol optical depth) for ...
3
votes
2answers
624 views
R levelplot, non-continuous latitude and longitude values
I have data-set represented as latitude-longitude and a VALUE(named "class") associated with each latitude-longitude pair, which i want to represent as using levelplot() or contourplot() under the ...
31
votes
5answers
17k views
How to save a plot as image on the disk?
I plot a simple linear regression using R.
I would like to save that image as PNG or JPEG, is it possible to do it automatically? (via code)
3
votes
1answer
742 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:
...
0
votes
1answer
149 views
Changing the order of plotting levels in Latitice
I am trying to get a boxplot with a specific order of the levels that are being plotted.
Using the following data and code I generate the boxplot, but the order in which I need this is 6,12,15,18.
I ...
2
votes
1answer
389 views
Creating a loop to print selected panels from a Lattice graph in independent pages
I have generated the following plot in lattice and latticeExtra
using
library(lattice)
library(latticeExtra)
rate$Temp <- as.character(rate$Temp)
rate$Week <- as.character(rate$Week)
rate$Rep ...
6
votes
1answer
2k views
How to change the order of the panels in simple Lattice graphs
Hi I am using the following code to generate an xyplot using lattice
xyplot(Rate~Weight|Temp, groups=Week, rate,
pch=c(15,16,17,3), col=c("blue","red","green","purple"),
as.table=TRUE,
...
