0
votes
2answers
32 views

How to use paste function in lattice while having new lines and substitute

Folks, I have the following example where I use lattice for a scatterplot of (random) data. What I am trying to do is paste three variables, in a new line each. The problem is found with the third ...
0
votes
0answers
16 views

Scales doesn't work on splom, lattice

I tried to change the size of text in splom, lattice. I searched online for over an hour, read the help file, but something is still wrong. I would really appreciate if someone gives me a simple ...
1
vote
1answer
23 views

Add duplicate xyplot in lattice

This is my first post so I'm not sure if I've done this correctly. I'd like to add a second xyplot to plot1 so that it represents the same data as the bubble plot (Percent~Distance and grouped by ...
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
0answers
45 views

Trying to plot time series data using time information only via lattice

I have a time series data for intraday price changes for different products for example: Date.Time Price Product 12/1/2012 13:12:01 15 A 12/1/2012 14:12:05 16 A 15/2/2012 09:09:10 11 ...
0
votes
1answer
44 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. ...
-2
votes
0answers
32 views

R levelplot size of the figure

I am new to levelplot. I have a question about how to scale the plot. My data is 6 X 500 and the rows are qualitative. In the end I generate a heatmap yet the figure/colors are not visible, cannot ...
2
votes
2answers
56 views

Multiple ablines in xyplot

I have a "long" dataframe defined as: q <- data.frame(Indicator.Code=factor(),Year=numeric(),Value=numeric()) and am trying to plot in a single xyplot the values as a function of the year, for ...
0
votes
0answers
19 views

R lattice - trying to change labels colors with y.scale.components customisation

I currently try to customise a lattice parallel plot, by changing its Y axis label colors, depending on the character of these same lables. I created a customised y.scale.components function, as ...
2
votes
1answer
52 views

multipanel smooth with grouping factor in lattice

I would like to use lattice to create multipanel scatterplots and add smooth lines through each panel using a grouping factor, here is a dummy dataframe x <- rep(1:10, 4) a <- ...
3
votes
2answers
103 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 ...
2
votes
2answers
152 views

XY scatter plot with heatmap strip at margin in r

Here data and hypithesis: set.seed(1234) myd <- data.frame (X = rnorm (100), Y = rnorm (100, 10, 3)) just catorizing X and Y, sometime this may be different variable than X and Y and is ...
1
vote
0answers
59 views

Remove outliers from plot in lattice (splom)

I'd like to plot some data as a scatter plot matrix with lattice. However, the data contains some outliers. This leads to a very squeezed plot of the main data. I'd like to remove the outliers from ...
3
votes
1answer
33 views

How do I produce a barchart of one factor conditioned on another factor?

Given a data frame like the following, with 2 or more factors: data <- data.frame(V1=sample(c('A','B','C'), 50, T), V2=sample(c('X','Y'),50,T)) I can produce a barchart of the tabulation of a ...
6
votes
1answer
67 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, ...
2
votes
2answers
161 views

Heatmap or plot for a correlation matrix [duplicate]

I tried to make a plot out of the correlation matrix and having three colours to represent the correlation coefficients using the library lattice. library(lattice) levelplot(cor) I obtain the ...
5
votes
2answers
151 views

Symmetrical, violin plot-like histogram?

How can I make a histogram in which the center of each bar lies along a common axis? This would look like a violin plot with step-shaped edges. I'd like to do this in Lattice, and don't mind ...
0
votes
2answers
68 views

Layer plots in R

I need to layer a scatterplot and an allEffects plot. Here are some example data: library("effects") x<-c(1,2,6,7,4,3,5) y<-c(5,6,3,6,9,4,4) a<-as.factor(c(1,1,1,2,2,2,2)) xyplot(y ~ x|a) ...
0
votes
1answer
107 views

How to add points to multi-panel Lattice graphics bwplot?

I'm making box-and-whisker plots in Lattice with bwplot. I want to add points for means. I've figured out how to do this for simple plots using panel.points. However, when I make a multi-panel ...
2
votes
1answer
51 views

How can I get the y-axis of a lattice xyplot to display fractions as percentages?

I'd like to be able to display the y-axis of my lattice xyplot in percentage units (e.g. 0.45 = 45%). Here's an example with some fake industrial process yield data: library(lattice) set.seed(1234) ...
0
votes
1answer
76 views

Saving levelplot() to file in R's lattice package

I noticed something really weird happening in my script: pdf("name.pdf") levelplot(my_data) dev.off() does not work for lattice's levelplot if I want to save the plot to a file. I read the lattice ...
0
votes
1answer
78 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
0answers
46 views

How can I specify a specific 'fill' for points in a lattice plot key?

A simple example of what I hope would work: library(lattice) xyplot(1~1, key=list( text=list( c("a", "b") ), points=list(pch=21, fill=c("red", "blue")) ## note pch=21 => filled circle ...
5
votes
4answers
349 views

Diagonal labels orientation on x-axis in heatmap(s)

Creating heatmaps in R has been a topic of many posts, discussions and iterations. My main problem is that it's tricky to combine visual flexibility of solutions available in lattice levelplot() or ...
0
votes
1answer
91 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 ...
3
votes
1answer
120 views

Symbol fill color in lattice using auto.key

I'm making a plot using xyplot in lattice (R 15.2, lattice 0.20-13) in which I have several groups that I would like to distinguish by the shape of the marker. I need to use a downward facing triangle ...
2
votes
0answers
92 views

Extracting data from densityplot within lattice and r

In R and using Lattice, I am trying to extract histogram and densityplot data by year for use by other programs. I have the histogram part working so far: library(lattice) x <- round(runif(1000, ...
0
votes
1answer
67 views

No effect of colorkey.space attribute in lattice's levelplot function

I try to draw the color key on the left side, but when adding the attribute colorkey.space="left" to the levelplot function, the color key does not move at all but is still on the right (default) ...
5
votes
1answer
161 views

How to plot a sparse (with gaps) line with its segments colored according to some factor in R?

I have a data.frame with time series. There are also NAs in it as well as there is a factor that I'd like to use to highlight different segments of a line. flow.mndnr <- function(id, start, end) { ...
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
117 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
1answer
81 views

how to convert xyplot formula in ggplot? [closed]

I am new to R. I am using xyplot to draw multivariate diagram. I appreciate your help to transfer the following Lattice code to ggplot code: par(mfrow=c(3,1)) xyplot(predictions~Area|Scale, ...
2
votes
3answers
236 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. ...
0
votes
2answers
79 views

Specifing order of lattice plot panels

I have looked at the two similar questions on this topic but do not find the answer I'm looking for in either of the two. The as.table function alters the alphabetic sequence from starting in the ...
0
votes
1answer
115 views

How do I create a histogram in R with logarithmic x and y axes? [duplicate]

So I have a vector of integers, quotes, which I wish to see whether it observes a power law distribution by plotting the frequency of data points and making both the x and y axes logarithmic. However, ...
0
votes
1answer
88 views

Ordering data in R lattice levelplot

I am trying to make a lattice levelplot and want my levels plotted in a specific order. name1 name2 value A a 1 A b 3 A c 2 B a 4 B b 1 B c 3 C a 1 C b 3 C c 4 so let's say that I want name1 ...
1
vote
2answers
45 views

How to use lattice in Rpy2 and save result to pdf?

I am following the documentation for rpy2 here (http://rpy.sourceforge.net/rpy2/doc-2.1/html/graphics.html?highlight=lattice). I can successfully plot interactively using lattice from rpy2, e.g.: ...
0
votes
1answer
78 views

Anova posthoc labels on bwplot from lattice in R

I would like to add significance labels following out of post-hoc analysis to box-and-whiskerplots from the function bwplot from the lattice package in R. I have read the ggplot2-based solution in ...
1
vote
1answer
297 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 ...
2
votes
2answers
60 views

Scoping in custom lattice functions (group argument)

Please consider this function: tf <- function(formula = NULL, data = NULL, groups = NULL) { grv <- eval(substitute(groups), data, environment(formula)) # the values grn <- ...
2
votes
2answers
77 views

r xyplot “steps” centered on data points

the type argument to xyplot() can take "s" for "steps." From help(plot): The two step types differ in their x-y preference: Going from (x1,y1) to (x2,y2) with x1 < x2, 'type = "s"' moves ...
0
votes
1answer
60 views

Plotting time durations

Some of my data consists of duration values expressed in seconds. I'm using the Duration data type from the lubridate package. To plot this data I'm calling barchart() from the lattice package. The ...
0
votes
1answer
106 views

Space between legend items

I'm using R and the lattice package to plot the chart below. Notice the two items in the legend, that are shown with no spacing between them. If I show the legend above (or below) the chart, it's ...
1
vote
1answer
101 views

How to control plot type for each of multiple dependent variables in lattice xyplot?

Suppose you have a dataset with multiple dependent variables for one dependent variable. With xyplot you can plot them simply as xyplot(y1+y2~x, data=d). How would you plot y1 with one plot type (e.g. ...
1
vote
1answer
160 views

Multiple boxplots with predefined statistics using lattice-like graphs in r

I have a dataset which looks like this VegType 87MIN 87MAX 87Q25 87Q50 87Q75 96MIN 96MAX 96Q25 96Q50 96Q75 00MIN 00MAX 00Q25 00Q50 00Q75 1 0.02 0.32 ...
4
votes
1answer
346 views

How to change panel labels and x-axis sublabels in a lattice bwplot

I'm 2 weeks into using RStudio (MacOS) so please forgive me if I'm overlooking an obvious function that would solve my problem. As a project, I am attempting to reproduce a box plot graph with 4 plots ...
5
votes
3answers
208 views

How do I make a heatmap-style bivariate histogram in a lattice layout?

Take the following example data: x <- rnorm(10000) y <- rnorm(10000) * x z <- rnorm(10000) * y df <- data.frame(x,y,z) We can produce a scatter plot matrix as follows: splom(df) ...
3
votes
2answers
173 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 ...

1 2 3 4 5 6