Top "Plot" questions

The graphical representation of a mathematical function or a set of data.

How to make a 3D scatter plot in Python?

I am currently have a nx3 matrix array. I want plot the three columns as three axis's. How can I …

python 3d matplotlib plot scatter-plot
How to draw a standard normal distribution in R

Possible Duplicate: Making a standard normal distribution in R Using R, draw a standard normal distribution. Label the mean and 3 …

r plot distribution draw
Plot a bar using matplotlib using a dictionary

Is there any way to plot a bar plot using matplotlib using data directly from a dict? My dict looks …

python matplotlib plot
how to draw directed graphs using networkx in python?

I have some nodes coming from a script that I want to map on to a graph. In the below, …

python plot graph networkx directed-graph
Format y axis as percent

I have an existing plot that was created with pandas like this: df['myvar'].plot(kind='bar') The y axis …

python pandas matplotlib plot
Plotting in a non-blocking way with Matplotlib

I have been playing with Numpy and matplotlib in the last few days. I am having problems trying to make …

python matplotlib plot
Reduce size of legend area in barplot

I can't reduce the size of the legend in this plot. Could someone help me out? I want it to …

r plot legend
Stacked Bar Plot in R

I've looked at the similar questions on here regarding stacked bar plots in R, but I'm still not having any …

r plot ggplot2 bar-chart
Plot 3D data in R

I have a 3D dataset: data = data.frame( x = rep( c(0.1, 0.2, 0.3, 0.4, 0.5), each=5), y = rep( c(1, 2, 3, 4, 5), 5) ) data$z = runif( 25, min = (data$…

r plot 3d
How to combine 2 plots (ggplot) into one plot?

By using R, is it possible to place 2 ggplot together (i.e., on the same plot)? I wish to show …

r graph plot ggplot2 visualization