A graphical technique for presenting a data set or an equation.
1
vote
1answer
22 views
How to creata a “plot matrix”
Hey dear R community !
I have a dataframe with stock values like this:
1 2 3 ... N
EADS Daimler BOEING
01.01.2012 5,2 ...
0
votes
2answers
24 views
Multiple plot by group by one function
I have the following data:
Animal MY Age
1 17.03672067 1
1 17.00833641 2
1 16.97995215 3
1 16.95156788 4
1 16.92318362 5
1 16.88157748 6
2 16.83997133 2
2 16.79836519 3
2 ...
0
votes
1answer
23 views
Temporal density plot in R
I have irregularly measured observations of a phenomenon with a timestamp each:
2013-01-03 00:04:23
2013-01-03 00:02:04
2013-01-02 23:45:16
2013-01-02 23:35:16
2013-01-02 23:31:56
2013-01-02 23:31:30
...
0
votes
3answers
28 views
Plot titles in R using sapply()
I want to make qqnorm plot out of every variable in my data frame using sapply(). This is what I've got so far:
myfun=function(x) {
c(qqnorm(x),
qqline(x)
)
}
sapply(mydata, myfun)
It ...
-1
votes
1answer
19 views
How to superimpose multiple plots
I am required to open data files in .txt format and generate plots out of them. I want to superimpose all the plots together so that I can do comparison between them. I am doing the following. I have ...
0
votes
0answers
12 views
Is there a good, simple Python charting library with no dependencies?
I'm writing an open-source project which is not primarily graphics-oriented. It would be handy to provide some very basic line graphs (as a way of letting users look at their data), but not at the ...
0
votes
1answer
10 views
How to remove axis dashes in OxyPlot
I am using OxyPlot and trying to show only the plot. I have found a way to make the axis numbers, the axes, and the background transparent. But I can't seem to find a way to make the axes dashes ...
0
votes
0answers
4 views
replacing data frame values with NA in r
I have a large data frame that consists of 38 variables and over 10000 observations for each variable. How can I select a certain variable and replace specific values with NA. For example, if I have ...
0
votes
1answer
14 views
Matlab: Plot a function with different parameters into
In Matlab I have a function calling a set of parameters. I have 3 sets, and I can call them individually and plot them.. No problems there. But I want to be able to compare them in one single plot. ...
1
vote
1answer
24 views
matlab serial data plotting in real time
I am trying to plot real time serial values over matlab but i could not succeed it by any demo . My embedded system is already sending data which is checked by serial terminal. When I am trying to get ...
0
votes
2answers
26 views
XY Plotting with Java
I'm trying to find some information for a co-worker about plotting with Java - specifically xy plotting. I've come across multiple java libraries but I'm not sure which of them are easy to learn to ...
0
votes
2answers
42 views
Automated barplots slope calculation
I use a function in R that draws for me a full-length barplot, as can be seen in this picture.
I am actually looking for something a little more advanced. Is there anyway in R that can detect the ...
2
votes
1answer
23 views
How to change the x-axis when plotting groups from a pandas groupby combined in one plot
I am processing a chatlog and my data consists of timestamps, usernames and messages. My goal is to plot the number of messages per month for several users, so that I can compare when users were ...
1
vote
1answer
21 views
Overlay lines and hist with ggplot2
I'm creating a table with a lot of plot using ggplot
a=rnorm(30)
b=a*a
c=rnorm(30)
d=c
l=runif(30)
m=l+3
data=data.frame(A=a,B=b,ss=1)
data=rbind(data,data.frame(A=c,B=d,ss=2))
ggplot()+ ...
0
votes
1answer
32 views
Plot and Legends in Matlab/ Using different colors for same signal
So I have this code
if (e(i)>mean(e))
fprintf('V1\n\n'); %E=High; Voiced
c='r';
end;
if ((ntz(i)<mean(ntz))& (e(i)<mean(e)) & (e(i)>0.00005))
...
1
vote
2answers
17 views
How to plot different class of time series data into one panel?
I have several product's hourly summary of multiple attributes in one table.
and I would like to plot them into one panel where x-axis stands for time and different type of products have different ...
1
vote
1answer
28 views
X axis on a two-screen zoo plot
This time I am struggling to adjust the X axis in a two-screen zoo plot.
Here's an example, inspired from a previous post:
x.Date <- as.Date(paste(rep(2003:2004, each = 12), rep(1:12, 2), 1, sep = ...
0
votes
1answer
37 views
Blurry label text in matlab plots
I'm having some matlab plots. when I save the plot and then put it in my word document and then save it as pdf file. I get the plot labels blurry and some letters is unclear ?!
plot(d1,S,'*');
...
2
votes
1answer
27 views
Remove 'y' label from plot in R
Does anyone know how to extract the 'y' off the y-axis while preserving the variable names in the following plot:
par(mar = c(5,7,4,2) +.01)
matrix <- matrix(rnorm(100) ,ncol = 2, nrow =6)
y <- ...
3
votes
2answers
61 views
How to arange a heatmap and an scaterplot one above the other in ggplot2
I am a newbie using ggplot2 and I'm trying to plot a scatter plot above a heatmap. Both plots have the same discrete x-axis.
This is the code I'm trying:
library(ggplot2)
library(grid)
...
0
votes
0answers
5 views
Control bounds of z-axis when using Plot3D
I've specified my function F[x,y], now when I graph it using Plot3D, how can I control the bounds of the z-axis that Mathematica uses?
1
vote
2answers
25 views
Cross section 2D data of symmetric len into Z matrix MATLAB - 3D plot from 2D cross section
I have a problem and maybe you will be able to help me. Like in the title i have cross section data of a symmetric lens - coordinates s=-100:1:100 and height y - and I would like to create 3D plot the ...
-2
votes
0answers
55 views
How to plot a function of two variables in R ? [closed]
Like I want to plot z = 2*x + 3*y. x and y are vectors with 20 values. So z will also have 20 values corresponding to those. Please help. I want to see the variation of z when (x,y) changes.
1
vote
1answer
34 views
Time-series plot for different seasons in the same plot
I would like plot a time series data for different seasons of the year (grouped as cold or warm) in the same plot and identify the two periods. How can I do that?
Reproducible data follows:
...
1
vote
2answers
31 views
Are there restrictions when doing R plots in Sage?
I have done some data analysis with Sage and R, and at this point I would like to produce a nice set of plots to condense the results so that I can present them properly.
What I've done is set the ...
-1
votes
1answer
23 views
Tell imagesc in MATLAB to use specific figure
I am getting more than ...slightly flustered... at trying to do what should otherwise be a very, very simple task.
I want to use a particular figure, say, figure(3), for doing imagesc. So in the ...
1
vote
1answer
50 views
Plot histograms as lines
I want to plot several histograms of time data (1 week long) on the same plot as lines.
I have time data:
> dput(head(ts))
structure(c(1364421605.227, 1364375025.034, 1364376298.393, ...
2
votes
2answers
41 views
Format axes in plot in Matlab
Is it possible to color a single number (or a set of numbers) on one of the axes in Matlab?
Suppose I have a plot:
plot(1:10, rand(1,10))
Now, can I e.g. make the number 3 on the x-axis red?
...
-2
votes
0answers
27 views
MATLAB graphing/saving files [closed]
Are there any better tools to saving vectorized matlab figures than panel and export_fig?
I was recently introduced to these two and liked them because of their ease of use and flexibility. (great ...
0
votes
1answer
55 views
MATLAB going from Cart to Pol back to Cart coords for cylindrical plot
1. What I WANT to do:
(i) Use input n to generate an n*n cartesian grid
[x y] = meshgrid(linspace(-1,1,n));
(ii) Generate polar coordinates
[theta r] = cart2pol(x,y);
(iii) Evaluate a ...
0
votes
1answer
23 views
How to customize axis when plot multiple time series data in 1 panel?
My situation is quiet like this question, how ever i need to plot multiple time series(or fixed length vectors) in one panel. (I want to upload a picture but it says i dont have enough reputation ...)
...
3
votes
3answers
77 views
Reduce PDF file size of plots by filtering hidden objects
While producing scatter plots of many points in R (using ggplot() for example), there might be many points that are behind the others and not visible at all. For instance see the plot below:
This ...
0
votes
1answer
27 views
Plotting multiple logistic curves using mapply
I have a set of 20 intercepts and coefficients for a logistic regression model. I'd like to plot them all on one graph (ideally, with base and not ggplot). I plot a single curve like this:
x = ...
0
votes
1answer
28 views
How to make a plot that has x-axis for specified time frame in tcl/tk?
I'm fairly new to tcl/tk and i'm trying to create a stripchart plot that allows me to set the time frame for x-axis example:
Link to pic of a time graph
I'm able to do it with dates, like this:
set ...
0
votes
2answers
25 views
Plotting selective values in R above above a given value
I have two columns of data in a data frame in R. I want to plot values from the 2nd column that are above a particular value say 'p'. And I also want to have the X axis as the first column i.e the ...
0
votes
1answer
19 views
Plot_Handles - How to use if-loop with plot handles?
I'm having a bit of a problem to integrate the if-loop with plot_handles. So the program I'm writing has this structure:
It has this menufile in which you choose what you want to do (This is only a ...
1
vote
2answers
36 views
smoothing 2D plot in MATLAB
I have some simple plot like this in MATLAB:
x = [0:5:25];
y = [1 4 7 9 8 3];
plot(x,y)
My question is how can I smooth it? Haven't found any way of doing what I want in documentation.
0
votes
0answers
47 views
How to reduce the marker symbol in a line plotted by using R?
I am using R to plot line chart, with the following command
data <- read.table("input_data.txt", header=T, sep="\t")
ind=seq(1,nrow(data),by=2)
pdf(file="result.pdf")
plot_colors <- ...
1
vote
1answer
25 views
Plot overrides axes property 'XTick'
I am creating a GUI in Matlab. I have several axes in which I plot different graphs. I have set in some of the axes the property XTick to []. However, each time I plot a new graph in the same axes, ...
0
votes
0answers
7 views
plot jQuery flot chart is not displaying in IE
plot jQuery flot chart is not loading in IE, but it is working fine in chrome and in firefox.
I have included excanvan.min.js also. Even though it is not working in IE. Please help. Below is my ...
0
votes
2answers
30 views
How to colour every sub group of points?
I am trying to plot a set of points in r by "plot" command, I would like to sub group them by colour. E.x. I have 9 points the first three points in to red, the next three points into blue , ...
1
vote
1answer
42 views
Is there a `par()` setting for plot area color?
I am wondering if there is an easy way to only color the plot area? I believe the par()$bg setting defines the color for the background of the entire device, and so I have been applying the low-level ...
0
votes
1answer
62 views
Plot shows up and disappears fast in R
I am plotting some graphs using R. When I run the program the plot appears and then quickly disappears. How can I make the plot stay?`
I am running the following code found in Dynamic Time Warping in ...
0
votes
3answers
32 views
Generate multiple lattice plots on a grid using lapply in R
How do plot multiple lattice plots onto a single lattice plot where the plots are generated using an lapply function?
The following is a demonstration of what I have tried so far using the built in ...
0
votes
0answers
6 views
Prob_with Plotting Numeric y variable against categorical
I was using the function plotCI to plot density of a lizard and its 95% Confidance intervals. I want x-axis to be represent categories and not as actual distances.
C_den <- c(5.96345, 9.4652, ...
0
votes
1answer
20 views
Plotting rows corresponding to a given y-value separately
Suppose I have a table of data-
No. 200 400 600 800
1 13 14 17 18
2 16 18 20 21
3 20 15 18 19
and so on...
where each column represents a y-value for a given x-value. The first line ...
1
vote
2answers
36 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
23 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 <- ...
2
votes
1answer
38 views
How to draw a line with changing intensity/grayscale
If I have matrix/data with line intensity values:
e.g.
0, 1, 2, 3, 4, 5, ..... M (where intensity value is gradually changing)
or
any random order of values
So if I use the first intensity set of ...
0
votes
2answers
41 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?


