A graphical technique for presenting a data set or an equation.

learn more… | top users | synonyms (1)

0
votes
1answer
14 views

Axis cut off in multiple plot figure in R

I am using layout() to create a multiple plot figure in R and only want the y-axis to show up in the bottom plots. I therefore take them out of the loop and add them in below with the axes, but when I ...
0
votes
2answers
28 views

Add labels to plot for specific values in R

I create a plot with the following dataset and I would like to add a label only for points flagged with a T in the "DisplayName" column. Probe Name DisplayName X Y bob1 A 0 53.989643 ...
2
votes
2answers
32 views

Clickable transparent lines are impossible in MATLAB?

So I have 3 lines (technically patches) that have some transparency enabled. These lines were generated by the patchline FEX submission. The FEX entry works great by making patches seem like lines by ...
1
vote
1answer
16 views

Legend entry for color and marker

I have a plot which defines line properties based on test parameters. For example, in the plot below, blue lines have a value of A=1, and red is A=2. The solid lines with dots have B=10 and dashed ...
3
votes
3answers
26 views

Python Matplotlib: plot with 2-dimensional arguments : how to specify options?

I am plotting several curves as follow: import numpy as np import matplotlib.pyplot as plt plt.plot(x, y) where x and y are 2-dimensional (say N x 2 for the sake of this example). Now I would ...
2
votes
1answer
17 views

transforming scale_colour_gradient to log2 space in ggplot2 in R

If I have a plot in ggplot2 where the value plotted is transformed into log2 but is also used as a colour value, as in: geom_line(aes(x=x, y=y, colour=y)) + ...
0
votes
0answers
8 views

how plot this kind of gis map, part of map but has limitaion

how to plot something like this: see image here, I didn't have 10 reputation so I can not post image, so paste a image URL here. http://img.dxycdn.com/upload/2011/11/03/40/88524524.jpg right part ...
1
vote
1answer
22 views

Matplotlib: show labels for minor ticks also

In matplotlib, when I use a log scale on one axis, it might happen that that axis will have no major ticks, only minor ones. So this means no labels are shown for the whole axis. How can I specify ...
0
votes
0answers
16 views

Plot a line graph of greater than 2000 data points

I want an app which plots the graph of the data points which I have. I almost got this from the library below http://www.ankitsrivastava.net/2012/03/a-simple-2d-plot-class-for-android/ The problem ...
1
vote
2answers
49 views

reversing scale colour gradient in ggplot2 in R?

I am using ggplot2's scale_colour_gradient2 to have a color gradient scale for numbers from 1 to 20 using: geom_line(aes(x=x, y=y, colour=c)) + scale_colour_gradient2(lims=c(1, 20), high="red", ...
0
votes
1answer
30 views

Specify the z-ordering of 2D patches in matlab

I draw some 2D patches (triangles in this case) using the following code patch('Faces',tris1,'Vertices',XX,'FaceColor','flat',... 'FaceVertexCData',colors1,... ...
1
vote
1answer
29 views

Defining Axis function in R

When drawing axis for time series, we usually create the tick marks and add the axis separately. Since I have to plot many time series, I tried to write the following function : Simple plot command ...
0
votes
1answer
23 views

Ho to make 3D parallel coordinates plot in r

hello guys, I´m looking for a R package to plot 3d parallel coordinates plot. Are there some packages? Thanks
0
votes
1answer
13 views

gnuplot pm3d plot triangle data

i'm trying to plot an heatmap on a triangular surface, the coordinates and "heat values" are obtained with the methog shown on page staff.aist.go.jp/a.noda/programs/ternary/ternary-en.html. so, i ...
0
votes
0answers
24 views

Android application sensor viewer

I'm a French engineering student who is working on an Android application project and it is the first time I have to do such kind of work. The aim of the application is to plot the curves obtained by ...
0
votes
1answer
27 views

left/right bottom/top justification of tiles in ggplot2

Using ggplot2 geom_tile, the default location of the tiles is centred on values of x and y. Is there a way to get x and y values to be the bottom left corner of each tile. From ...
0
votes
1answer
26 views

draw segments on an image in Matlab given a set of correspondences

I have a set of correspondences between points in two different images, and I want to plot them as lines in an image obtained concatenating the two original images, in order to show those ...
0
votes
1answer
30 views

Performance issues plotting multiple geoms on ggplot2

I was playing around with a piece of code and wanted to re-do a plot using ggplot2, but encountered a huge performance issue. Maybe I am doing something wrong, but looked for similar issues on the ...
0
votes
1answer
29 views

Multiple curves with same Time x-axis in R

Could-you help me please in solving this issue. In fact, i would like to plot multiple curves on the same graph on R with a x-axis which is time labeled. I tried this : dayTime = ...
-1
votes
0answers
30 views

density plot with missing values in R [closed]

I need to draw density plot for data available in txt file in the following format. Some of the entries are blank. I want to treat each column separately at the same time I want all the density plot ...
0
votes
3answers
29 views

How to display two overlapping lines in matlab

I have to plot 5 lines that overlap in some regions, and I need to be able to see all the lines. I can think of shifting the lines a bit to allow them to be displayed, but this doesn't seem a very ...
-1
votes
1answer
16 views

plotting csv data in high charts [closed]

I have logged a sensor data along with the system time in a csv file in the following format in a file data.csv Tue Jun 11 18:42:37 IST 2013,27 Tue Jun 11 18:42:38 IST 2013,28 Tue Jun 11 18:42:39 IST ...
2
votes
1answer
62 views

Plotting a 3D surface with no interpolation?

I have a following data: library(rgl) x <- c(rep(1,6), rep(3,6), rep(6,6), rep(9,6), rep(12,6)) y <- c(1.35,1.39,1.48,1.29,1.35,1.32, ...
2
votes
1answer
23 views

Python plot frequency of fft.rfft

this is my first question here on stackoverflow and I hope I will not make huge mistakes. I am analyzing a set of time series with sampling rate of 1 Hz. I need to plot their fourier transform in ...
0
votes
1answer
14 views

Transposed stem in MATLAB with matlab2tikz

I have got a little problem regarding matlab2tikz and maybe you are so kind to help me: I have a stem-plot in matlab and I want to transpose the plot, so that the stems are no longer perpendicular to ...
1
vote
1answer
29 views

Extract coefficient numeric for r plot legend

I'm trying to get the legend in a simple R plot to report the coefficient (i.e. slope) without manually extracting the value. Does anybody know how to code the legend so that it displays the value ...
0
votes
0answers
8 views

Plot 2D in line graph for android using eclipse

im looking for a working source code about plotting 2D to line graph using java. So far I've been try AndroidPlot but I had so many error, for example "Unfortunately apps is stop" . Im tired and ...
0
votes
1answer
45 views

plotting specific points within a spreadsheet in r

currently I am plotting 2000 some lines on a single plot in r. I am using the data from a spreadsheet which i cannot disclose due to sensitive information, but I'll try to illistrate how it is ...
0
votes
1answer
20 views

load files from two different folders in matlab

Hi and I am little bit new in matlab. I have two different folders in my laptop, each one contains about 400 different files. I want to load all these files (400 from first folder and 400 from second ...
1
vote
1answer
20 views

R Error with axis break code (plotrix gap.plot)

When I try to break axis of a plot I always get an error. I use plotrix pkg. My code so far: xlim <- c(0,1) ylim <- c(0,1) gap.plot(evcent(USAN_g_num)$vector, betweenness(USAN_g_num, ...
-1
votes
0answers
9 views

Box and whisker plots in javascript

I am doing a web programming by using JavaScript visualization library to show a box and whisker plots with CSV type file. There are 17 kinds of JavaScript visualization libraries on the Internet, ...
1
vote
1answer
31 views

Matplotlib - creating a filled 2d contour plot

I've calculated some values representing a potential as a function of x,y using relaxation method. And I want to display a contour plot with colors (not lines) but, the examples at matplotlib are all ...
1
vote
0answers
13 views

error in using logi.hist.plot command

I'm trying to show a correlation between a continuous variable and a binary variable, where the former is GDP of a province and the latter is whether a politician in the area was promoted. I've been ...
2
votes
1answer
41 views

How to change the background colour of a subplot/inset in R?

I'd like to add a subplot to an existing plot in R. The subplot (inset) should have a different background color. I tried the following: #install.packages("TeachingDemos", dependencies=T) ...
2
votes
1answer
25 views

matlab mark a certain domain beneath the x-axis

Is it possible to mark a certain domain beneath the x-axis in matlab plot? Example:
0
votes
1answer
28 views

How to plot the whole input from a string?

Is is possible to plot all the content from a string at once without taking every part of the string and see if it is for example sin,cos etc and plot it ? For example sinx + cosx, do I have to take ...
3
votes
3answers
45 views

R Scatter Plot: symbol color represents number of overlapping points

Scatter plots can be hard to interpret when many points overlap, as such overlapping obscures the density of data in a particular region. One solution is to use semi-transparent colors for the ...
0
votes
2answers
28 views

plotting cox proportional hazard model in R

I'm trying to plot a cox proportional hazard model in R. (or a logit model) I used the following code (which I copied from ...
1
vote
2answers
30 views

two simultaneous plots in matlab

I want to plot two simultaneous plots in two different positions in Matlab, looped animations and both are different animations, one with hold on and another with hold off. Also, one is 2D and one is ...
6
votes
1answer
59 views

Colorize parts of the title in a plot using R

Is it possible to colorize parts af the title in a plot that is generated using R? x = 1:10 y = 1:10 plot(x, y, main="title (slope=1)") In this plot I'd like to change the color of slope=1 to red.
1
vote
1answer
24 views

newbie gnuplot plot lines between points

I am a newbie with gnuplot. I am unable to figure out how lines can be drawn between points. In the image below all the red points are represented as follows ($TMPFILE1.sent.var) : ...
1
vote
1answer
19 views

Labeling plot maximum peaks in GNUPlot

I have some data that I'm plotting with GNUPlot. I have three different data sets for different energies. What I need to do is label the maximas on the plot. For example, I need something like (20, ...
2
votes
3answers
30 views

Trying to initiate PointF with a parameter

Edit: Thank you all, guys. I m indebted to you. I'm working on a program which plots a function between two values. Here's the code: public partial class Form2 : Form { public class E { ...
0
votes
1answer
21 views

How to add a third factor to the x axis in a lattice bwplot

I am very new to plotting data and I am trying to add a third factor to my bwplot. My factors are: Site with 6 levels (C0, C1, C2, C3, C4, C5) Seasonal Flow with 2 levels (High, Low) Land Use ...
0
votes
1answer
21 views

changing perspective in matlab

When I do a plot3 and record a movie, I cannot decide the perspective that is recorded in movie at any point. I don't want the default perspective that I get on screen. and I want to change. Is it ...
5
votes
2answers
90 views

Hierarchical / Multilevel pie chart

Is there any way to create a chart like this in R? I have not found any example, yet. EDIT: Here is an extract of the data shown in the chart: df <- structure(list(Animal = structure(c(2L, ...
0
votes
1answer
29 views

ggplot2: plotting bars when using stat_summary()

Here is my current script and the output: ggplot(data.and.factors.prov,aes(x=assumptions,y=FP, colour=factor(Design.Complexity))) + ...
0
votes
1answer
37 views

Drawing a Line On A White Image in OpenCV

I'm attempting to draw a graph on a blank image, using the cvLine method to go from point to point. Holder[] is an array of floaters. I have checked the array by printing out values, so it is not ...
0
votes
1answer
21 views

Line thickness when plotting discrete points

I am plotting a circle plot and calculating the coordinates of the circle myself. E.g. my_vector=0:0.1:2*pi; for i=1:length(my_vector), plot(...,'LineWidth',3); ...%some other functions like ...
0
votes
2answers
32 views

Powers on R plot

I have a plot in R and one of my axes is labeled as z^2 plot(log(b)~a, data=dat, pch=15, xlab="time", ylab="log(z^2)") Is it possible to write power in R without symbol "^" ?

1 2 3 4 5 80