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

learn more… | top users | synonyms (1)

96
votes
15answers
11k views

Most underused data visualization [closed]

Histograms and scatterplots are great methods of visualizing data and the relationship between variables, but recently I have been wondering about what visualization techniques I am missing. What do ...
84
votes
4answers
63k views

How do you change the size of figures drawn with matplotlib?

How do you change the size of figure drawn with matplotlib?
83
votes
4answers
13k views

xkcd style graphs in MATLAB

So talented people have figured out how to make xkcd style graphs in Mathematica, in LaTeX, in Python and in R already. How can one use MATLAB to produce a plot that looks like the one above? What ...
77
votes
6answers
97k views

Plot 2 graphs in same plot in R?

I would like to plot y1 and y2 in the same plot. x <- seq(-2, 2, 0.05) y1 <- pnorm(x) y2 <- pnorm(x,1,1) plot(x,y1,type="l",col="red") plot(x,y2,type="l",col="green") But when I do it ...
46
votes
10answers
57k views

What is the best open-source java charting library? (other than jfreechart) [closed]

Why are there not more opensource easy to use charting libraries for Java?. The only successful opensource project in this area seems to be jfreechart, and it doesn't even have any documentation or ...
40
votes
4answers
4k views

Shading a kernel density plot between two points.

I frequently use kernel density plots to illustrate distributions. These are easy and fast to create in R like so: set.seed(1) draws <- rnorm(100)^2 dens <- density(draws) plot(dens) #or in one ...
37
votes
3answers
6k views

Intelligent point label placement in R

1) Is there any R library/function which would implement INTELLIGENT label placement in R plot? I tried some but they are all problematic - many labels are overlaping either each other or other points ...
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 ...
35
votes
4answers
67k views

Automatically plot different colored lines in MATLAB

I'm trying to plot several kernel density estimations on the same graph, and I want them to all be different colors. I have a kludged solution using a string 'rgbcmyk' and stepping through it for each ...
34
votes
7answers
18k views

Getting LaTeX into R Plots

I would like to add LaTeX typesetting to elements of plots in R (e.g., the title, axis labels, annotations, etc.) using either the combination of base/lattice or with ggplot2. Is there a way to get ...
33
votes
21answers
9k views

Beautiful charting/graphing/scientific plotting [closed]

Are there any open-source charting libraries (at this point, I don't care what language/platform it's available for) that can produce "really, really, ridiculously good looking" plots, preferably with ...
30
votes
5answers
17k views

How to save a plot as image on the disk?

I plot a simple linear regression using R. I would like to save that image as PNG or JPEG, is it possible to do it automatically? (via code)
28
votes
1answer
17k views

Hiding axis text in matplotlib plots

I'm trying to plot a figure without tickmarks or numbers on either of the axes (I use axes in the traditional sense, not the matplotlib nomenclature!). An issue I have come across is where matplotlib ...
28
votes
1answer
19k views

How to set limits for axes in ggplot2 R plots?

Say I plot the following in R: library(ggplot2) carrots <- data.frame(length = rnorm(500000, 10000, 10000)) cukes <- data.frame(length = rnorm(50000, 10000, 20000)) carrots$veg <- ...
27
votes
5answers
38k views

How to plot two histograms together in R?

I am using R and I have two data frames: carrots and cucumbers. Each data frame has a single numeric column which lists the length of all measured carrots (total: 100k carrots) and cucumbers (total: ...
26
votes
4answers
2k views

making matplotlib graphs look like R by default?

Is there a way to make matplotlib behave identically to R, or almost like R, in terms of plotting defaults? For example R treats its axes pretty differently from matplotlib. The following histogram ...
26
votes
17answers
19k views

Are there any decent free Java data plotting libraries out there? [closed]

On a recent Java project, we needed a free Java based real-time data plotting utility. After much searching, we found this tool called the Scientific Graphics Toolkit or SGT from NOAA. It seemed ...
25
votes
9answers
18k views

Is there a way to detach matplotlib plots so that the computation can continue?

After these instructions in the Python interpreter one gets a window with a plot from matplotlib.pyplot import * plot([1,2,3]) show() # other code Unfortunately, I don't know how to continue to ...
25
votes
1answer
598 views

R - plot human body in 2d

I was wondering if there is a package to plot a 2D representation of the outline of a human body? Being in 2D, plotting either the front/back/side at any one time would presumably be the easiest way ...
24
votes
4answers
23k views

How do I tell matplotlib that I am done with a plot?

The following code plots two .ps files, but the second one contains both lines. import matplotlib import matplotlib.pyplot as plt import matplotlib.mlab as mlab plt.subplot(111) x = [1,10] y = [30, ...
24
votes
3answers
14k views

plotting time in python with matplotlib

I have an array of timestamps in the format (HH:MM:SS.mmmmmm) and another array of floating point numbers, each corresponding to a value in the timestamp array. Can I plot time on the x axis and the ...
23
votes
17answers
18k views

What is the best plotting library for Python? [closed]

What Python plotting library do you recommend? It should be noted the following considerations: is it cross-OS? speed how clean it's interface? "prettyness" of the resulting plots License etc? In ...
22
votes
3answers
4k views

Can R be used for GIS?

I'd like to create some GIS plots, and I'm wondering if R can be used for this. Here are some examples of plots I'd similar in concept to those I'd like to make: A temperature plot (or contour ...
22
votes
4answers
6k views

plotting legends in Mathematica

How do you plot legends for functions without using the PlotLegends package?
21
votes
3answers
342 views

Making a circular barplot with a hollow center (aka race track plot)

I was asked to recreate the following style of plot. (Please ignore the question of whether this is a good type of visualization and charitably consider this as adding a colorful element to a numeric ...
21
votes
10answers
33k views

Graph drawing C++ library? [closed]

Does anyone know any (preferably FOSS) C++ libraries that can draw basic graphs? I'm looking for something rather simplistic. Everything I could find through Googling involved complex, ...
21
votes
2answers
4k views

What do hjust and vjust do when making a plot using ggplot?

Every time I make a plot using ggplot, I spend a little while trying different values for hjust and vjust in a line like + opts(axis.text.x = theme_text(hjust = 0.5)) to get the axis labels to ...
21
votes
1answer
647 views

matplotlib: Centering period labels under the period's data in a time-series plot

matplotlib's axis-formatting options tend to fall flat when it comes to plotting and effectively labeling dense time-series data. One problem is that tick labels are tied to ticks, so if you set axis ...
20
votes
3answers
91k views

How to create a new figure in MATLAB?

Usually when I plot in MATLAB, it always draws on the same figure. How do I make it draw in a new figure? I know it is pretty elementary, but I'm not finding it using Google Search.
20
votes
3answers
24k views

Control the size of points in an R scatterplot?

In R, the plot() function takes a pch argument that controls the appearance of the points in the plot. I'm making scatterplots with tens of thousands of points and prefer a small, but not too small ...
18
votes
3answers
23k views

How do you plot bar charts in gnuplot?

How do you plot bar charts in gnuplot with text labels? (Sorry - I'm answering my own question here - as it suggest in the first entry of the faq)
18
votes
7answers
3k views

Plotting of very large data sets in R

How can I plot a very large data set in R? I'd like to use a boxplot, or violin plot, or similar. All the data cannot be fit in memory. Can I incrementally read in and calculate the summaries needed ...
17
votes
3answers
2k views

ggplot2: How can one copy a default theme and modify it?

I would like to create a new theme for ggplot that is based on theme_bw(). Than I would like to modify this new theme. Seems like an easy endeavor, but i've been working on it for more than one hour ...
16
votes
2answers
22k views

rotating axis labels in R

In R, how do I make a (bar)plot's y axis labels parallel to the X axis instead of parallel to the Y axis?
16
votes
5answers
30k views

Plot a legend outside of the plotting area in base graphics?

As the title says: How can I plot a legend outside the plotting area when using base graphics? I thought about fiddling around with layout and produce an empty plot to only contain the legend, but I ...
16
votes
2answers
732 views

Combine base and ggplot graphics in R figure window

I would like to generate a figure that has a combination of base and ggplot graphics. The following code shows my figure using the base plotting functions of R: t <- c(1:(24*14)) P <- 24 A ...
16
votes
2answers
21k views

R, change the spacing of tick marks on the axis of a plot?

How can I change the spacing of tick marks on the axis of a plot? What parameters should I use with base plot or with rgl? cheers
16
votes
4answers
8k views

plotting two vectors of data on a GGPLOT2 scatter plot using R

I've been experimenting with both GGPLOT2 and lattice to graph panels of data. I'm having a little trouble wrapping my mind around the GGPLOT2 model. In particular, how do I plot a scatter plot with ...
16
votes
2answers
390 views

Pretty ticks for log normal scale using ggplot2 (dynamic not manual)

I am trying to use ggplot2 to create a performance chart with a log normal y scale. Unfortunately I'm not able to produce nice ticks as for the base plot function. Here my example: library(ggplot2) ...
16
votes
3answers
173 views

Fix typography in axis labels

Preamble: I want to create publication-grade graphics from R without postprocessing. Other researchers at my institute always perform postprocessing in a graphics software (such as Adobe Illustrator). ...
15
votes
4answers
14k views

Grid in an R plot

Is there a command to easily add a grid onto an R plot?
15
votes
2answers
7k views

Venn diagram in R proportional and color shading possible (semi-transparency supported if possible)

I have following type of count data. A 450 B 1800 A and B both 230 I want to develop a color full (possibily semi-tranparency at intersections) like the following venn diagram. Is it ...
15
votes
3answers
3k views

What are the standard colors for plots in Mathematica?

When using the Plot or ListPlot command in Mathematica, certain default colors are chosen. For reasons of uniformity within some report I would like to use them along with the PlotStyle option. It ...
15
votes
5answers
22k views

Plotting 4 curves in a single plot, with 3 y-axes

I have 4 sets of values: y1, y2, y3, y4 and one set x. The y values are of different ranges, and I need to plot them as separate curves with separate sets of values on the y-axis. To put it simple, I ...
15
votes
13answers
15k views

Is there any 'out-of-the-box' 2D/3D plotting library for C++?

I looked at the different options for plotting functions (or other types of graphs) in an interactive window. I mostly use wxWidgets but I'd be open to any other "interfaces". Looking at what is ...
14
votes
3answers
4k views

Shaded area under two curves using R

I wrote the following code in R x=seq(-7,10,length=200) y1=dnorm(x,mean=0,sd=1) plot(x,y1,type="l",lwd=2,col="red") y2=dnorm(x,mean=3,sd=2) lines(x,y2,type="l",lwd=2,col="blue") How can I shade ...
14
votes
4answers
195 views

How do I plot the following in R?

I'm new to plotting in R so I ask for your help. Say I have the following matrix. mat1 <- matrix(seq(1:6), 3) dimnames(mat1)[[2]] <- c("x", "y") dimnames(mat1)[[1]] <- c("a", "b", "c") mat1 ...
14
votes
1answer
2k views

ggplot: geom_text with dodged barplot

I tried to make the title self-explanatory, but here goes - data first: dtf <- structure(list(variable = structure(c(1L, 1L, 2L, 2L, 3L, 3L, 4L, 4L, 5L, 5L), .Label = c("vma", "vla", "ia", "fma", ...
14
votes
2answers
11k views

Combining paste() and expression() functions in plot labels

Consider this simple example: labNames <- c('xLab','yLabl') plot(c(1:10),xlab=expression(paste(labName[1], x^2)),ylab=expression(paste(labName[2], y^2))) What I want is for the character entry ...
14
votes
2answers
950 views

combining two plots in r

Here are two plots I intend to combine: First is half matrix of heatmap plot. .............................. # plot 1 , heatmap plot set.seed (123) myd <- data.frame ( matrix(sample (c(1, 0, ...

1 2 3 4 5 76