Tagged Questions
A graphical technique for presenting a data set or a equation.
61
votes
15answers
4k 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 ...
32
votes
4answers
24k views
How do you change the size of figures drawn with matplotlib?
How do you change the size of figure drawn with matplotlib?
28
votes
22answers
5k views
Beautiful charting/graphing/scientific plotting
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 ...
26
votes
4answers
2k 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 ...
22
votes
10answers
23k 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 ...
20
votes
1answer
479 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
19k 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 ...
20
votes
14answers
12k views
Are there any decent free Java data plotting libraries out there?
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 ...
18
votes
4answers
354 views
Point Renderings Slightly Off in Mathematica
The Mathematica code
f := #1 + Sin[2 #1] &;
inflectionPoints = Table[{x, f[x]}, {x, -Pi, Pi, Pi/2}];
stationaryPoints = Union[
Table[{x, f[x]}, {x, -2 Pi/3, Pi/3, Pi}],
Table[{x, f[x]}, ...
17
votes
1answer
24k 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.
As the title of my question states, I want to create a surface plot from the data, and superimpose a contour map on the surface ...
15
votes
3answers
764 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 ...
15
votes
7answers
968 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 ...
15
votes
5answers
8k 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 ...
15
votes
17answers
11k 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 ...
13
votes
2answers
2k views
plotting legends in Mathematica
How do you plot legends for functions without using the PlotLegends package?
13
votes
4answers
5k 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 ...
12
votes
4answers
942 views
How to change the default ColorData used in Mathematica's Plot?
This question leads on from the recent question What are the standard colors for plots in Mathematica?
There it was determined that the default color palette used by Plot is equivalent to ...
12
votes
3answers
528 views
R interactive plot?
How can a user interactively change one aspect (e.g., orientation or length of a line) on a 2D plot?
12
votes
3answers
21k 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 ...
12
votes
13answers
8k 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 ...
11
votes
4answers
237 views
Exponential form of tick marks for log plot in Mathematica
In an attempt to learn more Mathematica, I am trying to reproduce the tick marks on this log (log) plot:
This is as close as I can get:
LogLogPlot[Log[x!], {x, 1, 10^5}, PlotRange -> {{0, 10^5}, ...
11
votes
4answers
256 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 ...
11
votes
2answers
272 views
R inconsistency: why add=T sometimes works and sometimes not in the plot() function?
what really bugs me is - why is R inconsistent with add parameter in plot() function?
It sometimes work and sometimes not!
In this example, it takes the parameter add=T with no problem:
plot(0:10, ...
11
votes
6answers
7k views
Plotting with C#
C# seems to show some promise for scientific computing, but I found very little about one plotting 2D graphs, which is very important both for science student and scientists.
Is there a reliable, ...
10
votes
3answers
175 views
Embedding a miniature plot within a plot
Does anybody know of a general way to embed plots into other plots to produce something like the mockup below?
I know that in lattice you can do it with print(..., more=TRUE, positions=...) as ...
10
votes
4answers
292 views
How do I draw gridlines using abline() that are behind the data?
When I draw grid lines on a plot using abline() the grid lines are drawn over the data.
Is there a way to draw the abline() lines behind the data? I feel this would look better.
Example:
x <- ...
10
votes
3answers
408 views
Mathematica RegionPlot on the surface of the unit sphere?
I am using RegionPlot3D in Mathematica to visualise some inequalities. As the inequalities are homogeneous in the coordinates they are uniquely determined by their intersection with the unit sphere. ...
10
votes
2answers
3k views
Plot Overlay MATLAB
How do you take one plot and place it in the corner (or anywhere for that matter) of another plot in MATLAB?
I have logarithmic data that has a large white space in the upper right-hand side of the ...
10
votes
2answers
3k 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 ...
10
votes
9answers
15k views
Graph drawing C++ library?
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, ...
10
votes
6answers
7k 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 ...
9
votes
1answer
116 views
Is it possible to update a lattice panel in R?
The update method of trellis plots allows one to modify a lattice plot after the initial call. But the update behaviour is more like replace than append. This differs from the ggplot2 idiom where ...
9
votes
1answer
133 views
Repeat plot command with minor changes in R
I made a plot in R and I want to repeat all the commands (like plot(), legend() or line()) that were carried out for this plot, with some minor changes. For example I want to set the axes to ...
9
votes
3answers
487 views
How to make a grid of plots with a single pair of FrameLabels?
What is the simplest way to create a row/column/grid of plots, with the whole grid having a single FrameLabel?
I need something similar to this:
p := ListPlot[RandomInteger[10, 5], Joined -> ...
9
votes
2answers
258 views
Detection and styling of multiple functions in Mathematica's Plot
This question started me thinking about how Mathematica detects multiple functions being plotted. I find that I really do not understand the process.
Consider:
Plot[{1, Sequence[2, 3], 4}, {x, 0, ...
9
votes
2answers
699 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 ...
8
votes
4answers
134 views
Filling Styles using a single Plot in Mathematica
Could I specify different filling colors for within a single plot like the bellow or would I need to "Show" several Plots ? Let`s say I would like the filling style to be the same as the PlotStyle.
...
8
votes
1answer
192 views
Place an image on the XY plane in a 3D Plot in Mathematica
Please consider the following, from the followings from
Can we generate "foveated Image" in Mathematica
Clear[acuity];
acuity[distance_, x_, y_, blindspotradius_] :=
With[{\[Theta] = ...
8
votes
3answers
237 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 ...
8
votes
3answers
350 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 ...
8
votes
4answers
285 views
Speed up ListLinePlot
I am trying to use Mathematica to analyse some raw data. I'd like to be able to dynamically display the range of data I'm interested in using Manipulate and ListLinePlot, but the plot rendering is ...
8
votes
2answers
447 views
Mathematica: 3D wire frames
Does Mathematica support hidden line removal for wire frame images? If this isn't the case, has anybody here ever come across a way to do it? Lets start with this:
Plot3D[Sin[x+y^2], {x, -3, 3}, {y, ...
8
votes
2answers
417 views
Mathematica: Transparent background with PNG
This is most likely a bug in Mathematica 8.0.1 and maybe other versions too. Lets try the following:
Table[
Export[
"Res_" <> ToString[r] <> ".png", Rasterize[
Style[x^2 + y^2, 40],
...
8
votes
3answers
468 views
Mathematica: Matlab like figure plot
How do you obtain a figure similar to Matlab's figures? That is, how can you make Mathematica have a white background inside the axes and some other color outside the axes. See the following figure:
...
8
votes
1answer
396 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", ...
8
votes
2answers
2k views
Matlab: How to zoom subplots together?
This question is almost identical to the one here (except for Matlab):
Matplotlib/Pyplot: How to zoom subplots together?
I have multiple subplots in one figure. The X axis of each plot is the same ...
8
votes
1answer
2k views
axis equal in a Matlab loglog plot
In Matlab the command 'axis equal':
sets the aspect ratio so that equal tick mark
increments on the x-,y- and z-axis are equal in size. This
makes SPHERE(25) look like a sphere, instead ...
8
votes
4answers
2k views
How can I extract data from a .fig file in MATLAB?
I know this is really basic, but I am new to MATLAB. After opening a .fig file, how do you actually work with the plotted data in the command window? All I see is the plot. I'm not sure how to ...
8
votes
3answers
3k views
Plotting multi-colored line in Matlab
I would like to plot a vertical line (I'd prefer any orientation, but I'd be happy with just vertical right now) with two-color dashes, say red-blue-red-blue-...
I know I could do it like this:
...
8
votes
1answer
3k 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 (for ...