1
vote
2answers
24 views

Printing plot depending on variable conditions on 2 pdf pages

I'am trying to print a plot, depending on a variable with 12 terms. This plot is the result of cluster classification on sequences, using OM distance. I print this plot on one pdf page : ...
0
votes
2answers
21 views

Legend not displaying color

I have drawn a plot in R. plot(NA,xlim=c(0,1),ylim=c(0,1), xlab=expression(delta),ylab="K", xaxs="i",yaxs="i",main = "Zones of extreme equality and inequality in BO1") # Empty plot cols <- ...
0
votes
2answers
36 views

Create barplot from data.frame

In R I have a data.frame like the one on the top of the picture. Is there a possibility to create a barplot like the one on the bottom of the image?
2
votes
3answers
27 views

Plot multiple individual by one function?

Could you please help me to solve this problem: I have a database like below: Animal Milk Age 1 11.96703591 1 1 13.41236333 2 1 14.85769075 3 1 16.30301817 4 2 17.74834559 1 2 ...
1
vote
3answers
38 views

How to color plot in R

I have a two dimensional plot. Every point on it has some value (say, y) ranging from 0 to 1. I want to show these values on a plot using colors. For example, if any point has a value less than 0.25 ...
2
votes
1answer
48 views

Fill up white space in R Plots

How does one get rid of white space when plotting in R as in the example below? I would like to do this because when I want to multiple plots on a page it looks terrible. I'm using the par ...
3
votes
1answer
44 views

Adding page numbers in pdf file generated by R

I am trying to add page numbers to a pdf file generated using plot in R and saved in a pdf format. I am using d_pply to the data.frame within which I am using the plot command. I thought d_pply ...
3
votes
1answer
40 views

How can I reorder the x axis in a plot in R?

Using plot in R causes the factors on the x-axis to be alphabetically ordered. How can I specify the order of the factors on the x-axis? Example: y <- 1:9 x <- c(rep("B", 3), rep("A", 3), ...
1
vote
0answers
31 views

How do I jitter the node split strings in plotting ctree output from partykit?

I have an issue where I am using mainly categorical data, set to a class of factor, in a classification tree. I am using the partykit package in R and not party as previous answers here suggested that ...
1
vote
1answer
30 views

R plotting a function which contains sequence/list

I have a simple function A A<-function(s){ c0=360 c1=60 c2=30 k=10 (8/60)*(c0+(sum(k*(c1+c2*(1:(s-1)))))) } I try to plot A but got an error message, which was obviously related to ...
1
vote
0answers
28 views

dotplot with R, editing colors, handling with duplicate values

I created a dotplot with R with the following source code: dotplot(mass_movement ~ quantity, data=mm_strat, groups=stratigraphy, cex=1.5, pch=19) The data looks like this: quantity | mass_movement ...
0
votes
0answers
33 views

Log-Cumulative Hazard Plot in R

Pretty much I have fitted a Weibull Distribution so that it contains all the significant variables i the model. My code is; fit <- weibreg(Surv(t, cen) ~ treat + hosp + age + anti + cort, ...
0
votes
0answers
61 views

Preparing data set for volcano plot in R

I have the following dummy data set: MYdata = data.frame(fruit = c("apple", "apple", "apple", "apple", "apple", "apple", "apple", "pear", "pear", "pear", "pear", "pear", "pear", "lemon", "lemon", ...
1
vote
0answers
30 views

Adding legend to venneuler

I'd like to add a legend to my Venneuler ven diagram based upon the generated colors in the diagram. How can i generate a corresponding legend? Is it also possible to plot the values in the Ven? ...
-4
votes
0answers
69 views

Sampling distributions [closed]

It has been a while since I learned how to work with R. For someone in practice, it should be easy to help me. I would like to plot sampling distributions from normal distributions for varying N and ...
0
votes
1answer
55 views

view, edit and save edits for large number of plots in r

I have a list of 1000 of dataframe (each with 4 columns with same name). I want to draw plots and work on them interactively. The following is example (with 3 dataframe for single list). # dummy data ...
0
votes
2answers
49 views

color a portion of the normal distribution [duplicate]

I would like to fill or color a portion of the normal distribution. I fould an example of how to do that here: http://msenux.redwoods.edu/math/R/StandardNormal.php x=seq(-4,4,length=200) y=dnorm(x) ...
1
vote
1answer
53 views

R automatically writing charts/graphs to files

In R, I have a script which generates 2134 graphical plots. In the R environment a graphics windows pops open and flips through all 2134 graphical plots while the script is running. Specifically, ...
0
votes
1answer
40 views

interactively work with xy point plot clusters - group manipulation in r

I have a large number of pair of X and Y variables along with their cluster membership column. Cluster membership (group) may not be always right (limitation in perfection of clustering algorithm), I ...
1
vote
2answers
51 views

Adding regression to scatter plot in R

I want to add regression to my scatter plot in R and to make elevation independent while snowfall dependent. I know how to construct a simple scatter plot - but using regression and making elevation ...
2
votes
1answer
29 views

Specify spaces between bars in barplot

I am trying to generate a barplot with R with different widths of the bars and different spaces between them. For example I have a matrix data <- matrix(c(1,2,2,4,7,1,11,12,3), ncol = 3, byrow = ...
0
votes
1answer
33 views

ggplot failing to plot the correct color

ggplot2 seems to have gone haywire in my machine. No matter what color I specify, it seems to print the lines in red! For example, the following code also prints the plot in red (image attached). df ...
1
vote
1answer
22 views

plotting xts objects - passsing values for lwd and col parameters creating errors

Whenever I try to plot my xts object with values passed for parameter col and lwd, it returns an error saying that the parameter col (and then lwd if I comment out col) matched multiple values. Here ...
0
votes
0answers
19 views

By using rgl plot3d in r, how to customize the plot center

I have a data frame A that can be plotted into a 3-D scatter plot by using plot3d. Is there a way to set the center of the plotting? Like say, I want the A[13,] to be the center of the plot.
8
votes
1answer
94 views

How can I remove the strange white margin around my .png (plotted with r, ggplot)?

I save plots with ggplot as .png. The background has to be black, but there is allways a small white margin (only top, down an left; not right). How can I remove this margin? Thank you! Here is my ...
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
28 views

R: plotting decision tree labels leaves text cut off

(I'm still learning how to handle images in R; this is sort of a continuation of rpart package: Save Decision Tree to PNG ) I'm trying to save a decision tree plot from rpart in PNG form, instead of ...
0
votes
1answer
35 views

Multiple columns in kernel density and plot it combined with another graph

I have a data consisting of simulated values. The data set is a 95*525 matrix and below I have printed a small sample of the data. 0.01076 0.01076 0.01076 0.01076 0.01076 0.0105259 ...
0
votes
1answer
14 views

R: omi and mar return with xlim-errors

I want to save the image of a plot as png-file; however it cuts off the axis-labels. So I tried leaving a greater margin by setting "omi" and "mar" but it does not seem to work. Adding more pixels ...
2
votes
2answers
53 views

Multi variables in the same plot

I have a data matrix with a 525*95 dimension. The data contains simulated values that I wish to plot in the same graph. This means that I have 95 different variables that all have the same starting ...
0
votes
2answers
38 views

How to change na.action for zero-inflated regression model?

I am running a zero-inflated negative binomial regression model using the function zeroinfl from the pscl package. I need to exclude NA's from the model in order to be able to plot the residuals ...
1
vote
1answer
43 views

How to scale points in R plot?

I have 40 pairs of birds with each male and female scored for their colour. The colour score is a categorical variable (range of 1 to 9). I would like to plot the frequency of the number of males and ...
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. ...
-1
votes
1answer
38 views

suppress the margin of R plots vertically [duplicate]

I am using base R plot function to generate vertically aligned plots (2-by-1), with both x and y labels but without a title. However, when I use par(mfrow=c(2,1)) plot(obj1) plot(obj2) I notice ...
1
vote
1answer
63 views

Control ggplot2 legend look without affecting the plot

I'm plotting lines with ggplot2 like this: ggplot(iris, aes(Petal.Width,Petal.Length,color=Species)) + geom_line() + theme_bw() . I find legend marks to be small so I want them to be bigger. If I ...
0
votes
2answers
32 views

Error plotting data from netcdf file “increasing x y values expected”

I want to plot sea surface temperature data from a regular grid but can't find the proper way to do it. My data comes in nc format and can be downloaded from ...
4
votes
2answers
47 views

How do I specify axis thickness in a plot? (in R)

I am using using plot(), matplot() and ggplot(). I am guessing the answer will be the same for all of them. I want to specify the thickness of the y-axis, the x-axis, and the other two lines that ...
0
votes
1answer
64 views

Open many files and plot colour by dataset in R

I am a newbie to R and I am sure this is simple, but I am not sure what terms to search for. I have a series of data files in directories, each with the same format (tab separated, each has X_DATA ...
3
votes
2answers
93 views

How can I color the ocean blue in a map of the US?

I would like to draw a map of the US over an image, but then fill in the oceans. here is my starting point: library(maps) library(graphics) image(x=-90:-75, y = 25:40, z = outer(1:15, 1:15, "+"), ...
1
vote
1answer
31 views

How to add axis labels to a multiplot in R?

I managed to create a single plot with 4 different diagrams. However the axis labels don't show up. As I am a beginner in R I'd appreciate if someone could show me how to add axis labels to this kind ...
-7
votes
0answers
58 views

I cannot populate a scatter plot with my datasets [closed]

I am trying to populate a scatter plot using R. I am getting an error saying "Error in strsplit(log, NULL) : non-character argument" My datasets are like this: > Dat1 = scan() 1: 66 2: 32 ...
2
votes
2answers
74 views

Keep or set the ratio between text labels and size of plot in grid.arrange

I am trying to arrange 2 plots created using ggplot2 and would like the plots to be the size of a square and one next to the other, with the common legend next to them, so that the image fits nicely ...
1
vote
1answer
33 views

Different titles for plots using loop in R

I am trying to make plots in a loop. But how do I put different titles on each plot? In this example, I want different names for my 8 density plots, such as beta[Treatment], beta[Time Dummy], etc. ...
1
vote
1answer
43 views

How do you apply the pch parameter in R to individual points in a scatter plot?

I am interested in changing the symbol used to represent the two most influential points in my scatter plot. In this case, they are rows 19 and 20 in the data frame. The code I have is as follows: ...
2
votes
1answer
46 views

plotting x-axes with custom label in R

I've to plot these data: day temperature 02/01/2012 13:30:00 10 10/01/2012 20:30:00 8 15/01/2012 13:30:00 12 25/01/2012 20:30:00 6 02/02/2012 13:30:00 5 10/02/2012 20:30:00 3 15/02/2012 ...
2
votes
1answer
87 views

How to remove one outlier in ggplot2 facet point_plot that squash the rest of the data

I produced a faceted plot that I'm very satisfied with except for one issue. On a couple of the plots, one or two outliers completely ruin the graph. I could use y_lim function, but I'm using ...
1
vote
0answers
67 views

plot multiple fit and predictions for logistic regression

I am running multiple times a logistic regression over more than 1000 samples taken from a dataset. My question is what is the best way to show my results ? how can I plot my outputs for both the fit ...
1
vote
1answer
49 views

Flip ggdendrogram plot

I'm using a ggdendrogram to plot a dendrogram, but I want to have the labels on the left to make the graph more intuitive. How do I do this? Thanks!!! library(ggplot2) library(ggdendro) ### Data ...
1
vote
2answers
89 views

Plot survival and hazard function of survreg using curve()

I have a survreg model Call: survreg(formula = Surv(time = (ev.time), event = ev) ~ age, data = my.data, dist = "weib") Value Std. Error z p (Intercept) 4.0961 0.5566 ...
0
votes
1answer
30 views

Defining color of 3D points plot based on distance in R

Suppose I generate some three-dimensional Gaussian samples and I plot these with plot3D. I want to color the points depending on their distance to the center of the cloud. By this I mean that I want ...

1 2 3 4 5 30