2
votes
1answer
89 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 ...
0
votes
0answers
89 views

Correlation plot without Economics toolbox in Matlab

I need to write a script to plot correlation between two variables in a file, that looks like this: color spatio 0.890832 0.832139 0.996072 0.990377 0.997679 0.993388 File contains ...
0
votes
1answer
162 views

Sensitivity /Specificity versus cutoff point plot in R?

Is there a package for making a sensitivity/specificity versus cutoff point plot in R? Preferable one that takes a glm object as an argument? Something like this is what i am looking for: PS: Does ...
0
votes
0answers
83 views

Ploting box plots in Java with variable width per box

I would like to plot a boxplot of some statistical data, in Java, so that the width of a box represents the number (or weight) of samples (Example). I've been toying with JFreeChart, but it only has ...
2
votes
3answers
810 views

Add bars for standard deviation to a plot in R

For each X-value I calculated the average Y-value and the standard-deviation (sd) of each Y-value x = 1:5 y = c(1.1, 1.5, 2.9, 3.8, 5.2) sd = c(0.1, 0.3, 0.2, 0.2, 0.4) plot (x, y) How can I add ...
-6
votes
3answers
107 views

recommended online resources for customizing R plots, especially for statistics? [closed]

Could someone please recommend some online tutorials or pages that show you how to customize R plots, especially for customizing plots related to statistics and statistical graphics? Things like ...
-1
votes
1answer
121 views

How to plot normalization in R

I have a data that looks like this: mRNA Value Value2 Value3 --------------------------------- mRNA1 30 mRNA2 199 ... ... ... .... ...
1
vote
2answers
75 views

Strange dashed lines in zoo plot

I have the following very simple R script which uses zoo to visualize daily numbers on a timeline: # Small script to plot daily number of added users to database library(zoo) data <- ...
-4
votes
2answers
163 views

R stacked barplot [closed]

I have the following dataframe: Var1 Var2 FALSE FALSE FALSE TRUE TRUE FALSE FALSE TRUE FALSE FALSE Question 1: When we look at just 1 column, how can i generate a simple stacked ...
-4
votes
2answers
95 views

Using R to plot a set of numbers

I have a set of numbers: 170,295,200,165,140,190,195,142,138,148,110,140,103,176,125,126,204,196,98,123,124 152,177,168,175,186,140,147,174,155,195 And I would like to use R to plot them in a ...
1
vote
1answer
990 views

How to add RMSE, slope, intercept, r^2 to R plot?

How can I add RMSE, slope, intercept and r^2 to a plot using R? I have attached a script with sample data, which is a similar format to my real dataset--unfortunately, I am at a stand-still. Is ...
-2
votes
1answer
128 views

2 graphs in R - Normal, Kernel functions

I was trying to fit 2 curves in one plot. One graph contains a histogram and the same graph contain the normal curve and lastly, the kernel function. However, I can't get more than one graph to show ...
-3
votes
3answers
2k views

Plotting Log scale in R

I'm trying to plot a logarithmic scale, but I keep on getting this error: Error in plot.window(...) : invalid "log=1/h" specification. I'm not sure what I am doing wrong. Below is my code: ...
0
votes
0answers
174 views

Matlab perfcurve labels formatting?

I want to create a ROC curve in Matlab using the perfcurve function (it's for logistic regression similar as illustrated in this example (bottom of page)). I have 150 datapoints (binary data), but ...
2
votes
1answer
295 views

Not able plot a line over a box-plot in MATLAB

I am drawing a box-plot so I use the following code in MATLAB. I am very new to matlab. for k=1:N % running through k categories in the plot patch(...); % The box % now drawing the ...
1
vote
1answer
120 views

How to auto size plots in R

Say I have a huge decision tree by using the package party, how does one declare auto size to fit everything into a jpeg or png? Example: library(party) data(Boston) jpeg("test.jpg") tree <- ...
2
votes
1answer
387 views

Show rows on clustered kmeans data

Hi I was wondering when you cluster data on the figure screen is there a way to show which rows the data points belong to when you scroll over them? From the picture above I was hoping there would ...
1
vote
2answers
706 views

Algorithm for drawing box plot for given data

I have sorted array of real values, say X, drawn from some unknown distribution. I would like draw a box plot for this data. In the simplest case, I need to known five values: min, Q1, median, Q3, ...
0
votes
3answers
150 views

Code works fine on win7, but there are problems on OSX

i have problems to perform my R-Code in OSX. That's my code: i <- 1 while (i <= 20000) { repeat{ z1=((runif(1,0,1)*2)-1) z2=((runif(1,0,1)*2)-1) h=z1**2+z2**2 if((h > 0) ...
1
vote
2answers
349 views

How to draw random numbers in a circle and a square?

I want to visualize the the Algorithm of the Polar method from two perspectives (bird's-eye and frog's eye view). To draw the first step of the method I need random number of the uniform distribution ...
0
votes
2answers
350 views

Statistical analysis on Bell shaped (Gaussian) curve

In my application I am getting images (captured by a high speed camera) containing projections of some light sources on the screen. 1-My first task is to plot a PDF or intensity distribution plot ...
0
votes
1answer
96 views

zerrorlines in Gnuplot's splot

I wish to use error lines for some data in a 3D plot using splot command in GNUplot. Unfortunately, I am unable to find any documentation for this and fear that the functionality might be unavailable ...
0
votes
0answers
123 views

statistical analysis of variables in an array

I have a data for different devices taking different number of steps to reach destinations. For example Device 1 might take 10 steps, Device 2 might take 8 steps. More steps they takes it will affect ...
2
votes
2answers
605 views

How can I express densities as percentages in R?

When I run a density histogram in R, the vertical axis shows densities as fractions. Try this, for example: hist(rnorm(100), freq = FALSE) See how the vertical axis shows "0.0", "0.1", "0.2", etc. ...
1
vote
1answer
409 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 ...
1
vote
2answers
616 views

gnuplot removing outliers when plotting a data file

I need to plot a data file of 2 colums using gnuplot, scatter plot is what I need I think. My understanding of gnuplot goes as far as : plot "first_click" using 2:1 3 lines from head and tail of ...
3
votes
4answers
311 views

Plot different conditions & subjects at once in Mathematica

Please Consider : Needs["ErrorBarPlots`"]; fixNumberF1F6 = {{{7.11`, 7.51`, 11.14`, 8.19`, 6.58`}, {2.14`, 2.33`,2.25`, 1.53`,1.71`}}, {{4.69`, ...
1
vote
1answer
91 views

Detect high amplitudes in a plot

I plotted a couple of values, that represent a signal strength being weak or high. My problem is, that I want to statistically evaluate the start and end X-coordinate. My issue with that is, that ...
2
votes
2answers
15k views

How to draw probability density function in MatLab?

x = [1 2 3 3 4] cdfplot(x) After Googling, I find the above code will draw a cumulative distribution function for me in Matlab. Is there a simple way to draw a probability density function? To ...
1
vote
1answer
131 views

help with math in R

Need help to plot graphs: Wt contains 1000 Iterators on how far one has walked the 100 steps. Mean and sd are the mean and standard deviation of those 1000. I am asked to create five graphs showing ...
0
votes
1answer
499 views

How can I plot the mean of sliding groups of data in R?

I have a frequency distribution I am trying to plot in R. The dataset is quite noisy however and results in an untidy plot. I would like to take the mean of 10 unit sliding windows and plot that data ...
1
vote
2answers
979 views

Power vs Effect Size plot

I want to do a plot of power vs effect size. I have done one of power vs sample size using: ptab<-cbind(NULL, NULL) for (i in c(1:4588)){ ...
7
votes
3answers
2k views

Conditionally colour data points outside of confidence bands in R

I need to colour datapoints that are outside of the the confidence bands on the plot below differently from those within the bands. Should I add a separate column to my dataset to record whether the ...
10
votes
1answer
920 views

Graphing perpendicular offsets in a least squares regression plot in R

I'm interested in making a plot with a least squares regression line and line segments connecting the datapoints to the regression line as illustrated here in the graphic called perpendicular offsets: ...
1
vote
1answer
71 views

Does anyone here use the make-cdf & stats.pl program?

I came across this page: Plotting Tools where I found a set of tools with the name stats.pl and make-cdf. I can write my own but don't want to spend too much time when someone else has already done ...
4
votes
2answers
6k views

Plotting axes with different scales for one data set in R

I have a large data set I am plotting in R, and I'd like to have an axis on each side of the graph show the data in two different scales. So for example, on the left vertical axis I'd like to plot the ...
4
votes
3answers
3k views

Using ggplot2 how can I represent a dot and a line in the legend

Using ggplot2 I am plotting several functions and a series of points. I cannot figure out how to represent the points on the legend. I realize I need to use an aes() function, but I don't fully ...
3
votes
1answer
2k views

Is there a way to remove the border of the legend in ggplot2?

I'm using qplot to plot a function and I want to position the legend within the plot. I've used opts( legend.position = c(0.7,0.7) ) to move the legend where I want it to be. However there is a ...
3
votes
2answers
1k views

Plot multiple functions in R

I previously asked this question which was useful in plotting a function. I want to try and plot twenty functions on the same axes to illustrate how a function varies between two ranges. I have ...
36
votes
1answer
48k views

Plotting a 3D surface plot with contour map overlay, using R

I have a 3-tuple data set (X,Y,Z points) that I want to plot using R. I want to create a surface plot from the data, and superimpose a contour map on the surface plot, so as to create the impression ...
2
votes
5answers
2k views

Combining 3D/2D plots

I'm trying to make a visualization that looks like this . The idea is to have a 3D surface plot overlapping a 2d representation of a surface. I can build arbitrary surfaces/polygon shapes (as in ...
7
votes
1answer
3k views

Plot multiple sets of points in R

I have multiple sets of xy pairs that I want to plot. I want each set of xy pairs to be connected by a line. In other words the goal is to have multiple experimental instances each approximated by a ...
5
votes
2answers
6k views

Plotting functions in R

Is there a way of overlaying a mathematical function on top of data using ggplot? ## add ggplot2 library(ggplot2) # function eq = function(x){x*x} # Data x = (1:50) y = ...
3
votes
5answers
2k views

Problem storing plot objects in a list in R

I asked this question yesterday about storing a plot within an object. I tried implementing the first approach (aware that I did not specify that I was using qplot() in my original question) and ...
0
votes
1answer
326 views

How to seed RRDtool from file with timestamps?

I have a file with timestamps for hits on a system. How can I feed this into the RRDtool database (or other similar solution), so that I can plot a time graph?
5
votes
4answers
10k views

Howto Superimpose Multiple Density Curves Into One Plot in R

I have a data that looks like this. And I intend to create multiple density curve into one plot, where each curve correspond to the unique ID. I tried to use "sm" package, with this code, but ...
9
votes
2answers
5k views

Plot time data in R to various resolutions (to the minute, to the hour, to the second, etc.)

I have some data in CSV like: "Timestamp", "Count" "2009-07-20 16:30:45", 10 "2009-07-20 16:30:45", 15 "2009-07-20 16:30:46", 8 "2009-07-20 16:30:46", 6 "2009-07-20 16:30:46", 8 "2009-07-20 ...