0
votes
1answer
77 views

Plot a histogram in MatLab

I have one vector(newdata) consisting of 4100 lines and one column. To be exact, those elements are the counts of a spectrum. What I want is to reproduce the spectrum using matlab. That's why I ...
0
votes
1answer
42 views

solved Changing values on x and y axis on a histogram

Update 2013/04/23 13:52 solved with pylab.bar() i want to plot a histogram, how many scrabble words with 2, 3, 4, 5, 6 or 7 chars are found in a dictionary over x trials with a random hand. The ...
2
votes
1answer
145 views

Plot a histogram with the x axis values based on the height of the column

So say I have the following: [1,5,1,1,6,3,3,4,5,5,5,2,5] Counts: {1:3, 2:1, 3:2, 4:1, 5:5, 6:1} Now, I wanted to print a plot like a histogram that is sorted on the x axis, as in: A traditional ...
1
vote
1answer
95 views

Modifying Matplotlib multicoloured histogram script to make it cumulative

I was trying to make histograms where different bars are different colours. I was delighted to find this page which provided scripts to do it all for me. There's only one problem - it doesn't seem to ...
2
votes
1answer
133 views

Matlab : How to show multiple plots in one single figure with nice navigation like scrolling?

I have a large matrix that I compare each column for dependencies. (70 x 70 matrix)I want to show all the correlation plots to be able to interpret data visually. But it seems that matlab provides me ...
0
votes
2answers
61 views

How to make the histograms 'touch' in pylab?

So I made a program that does what I need, mainly plots histogram from my data, but I have a few issues with it: Here's the program: # -*- coding: cp1250 -*- from __future__ import division from ...
0
votes
1answer
219 views

Histogram Plot for RGB values in WinRT App

I'm having an issue with creating a histogram representation of an image in a WinRT app. What I'd like to make consists of four histogram plots for Red, Green, Blue, Luminosity for an image. My main ...
0
votes
0answers
56 views

Plotting a histogram estimate together with an analytical solution of the mean and covariance parameters

How do I plot a histogram estimate of this marginal distribution p(x1): import numpy as np import matplotlib.pyplot as plt from scipy.stats import norm linalg = np.linalg N = 100 mean = [1,1] cov = ...
1
vote
2answers
263 views

matlab: 2D line plot horizontal lines

This is actually very basic and I've done it before (a long tme ago) but I can't find it now; I have a vector of data points that I want to plot with a line plot; however I want the lines to be ...
1
vote
1answer
162 views

how to rescale the Y axis (frequency) of a histogram in R?

I have this raster file and I want to rescale the y axis (frequency) to [0,1](by dividing the frequency by the sum of all frequencies). conne <- file("C:\\fined.bin","rb") sd<- readBin(conne, ...
1
vote
2answers
586 views

Histogram of two variables in R

I have two variables that I want to compare in a histogram like the one below. For each bin of the histogram the frequency of both variables is shown what makes it easy to compare them.
1
vote
1answer
295 views

Octave: Creating Two Histograms with Color Blending

I am creating one histogram on top of another in Octave. hold on; hist(normalData(:, column), 10, 1, "facecolor", "g"); hist(anomalousData(:, column), 10, 1, "facecolor", "r"); hold ...
-2
votes
1answer
69 views

Visualizing of frequency of integer data in R [closed]

When I try to visualize my integer data with histogram(mydata,breaks=c(0,n)), R usually doesnt care about how many breaks (usually 1 bar for each sample) do I use and it plots n-1 bars (first two bars ...
0
votes
1answer
208 views

fit a function to a histogram created with frequency in gnuplot

Intro In gnuplot there's a solution to create histogram from file named hist.dat what likes 1 2 2 2 3 by using commands binwidth=1 set boxwidth binwidth bin(x,width)=width*floor(x/width) + ...
3
votes
1answer
651 views

SuperImpose Histogram fits in one plot ggplot

I have ~ 5 very large vectors (~ 108 MM entries) so any plot/stuff I do with them in R takes quite long time. I am trying to visualize their distribution (histogram), and was wondering what would be ...
1
vote
1answer
132 views

histogram does not show densities

easy question maybe. googled a lot now. tried different functions and several different arguments. but the histogram hist(estimator, probability=T, br=5) ist not showing densities on the y-axis no ...
-1
votes
2answers
550 views

compare two images by histogram and plotting in one figure [closed]

I want to compare two brain image using histogram an plot them or make two graph in one figure. How can i do that? I can make two histogram in two different figure but can not plot them in one as i am ...
5
votes
2answers
395 views

Matlab: Colour grade a Constellation Diagram

I am using Matlab. I have a large column vector consisting of complex values. e.g. data=[ -0.4447 + 0.6263i 0.3114 + 0.8654i 0.7201 + 0.6808i 0.7566 + 0.8177i -0.7532 ...
1
vote
1answer
47 views

How to change font for all subsequent plots in R?

I know how to specify font for a concrete plot, but is there a way to specify it once for all subsequent plots, histograms etc?
1
vote
1answer
132 views

Adding a curve to a histogram?

I'd like to add a curve with it's x and y coordinates already defined to a histogram. Consider the histogram below: set.seed(38593) expRandom <- rexp(10000) x <- seq(from = 0.05, to = 10, by = ...
1
vote
1answer
431 views

Cumulative histogram with percentage on the Y axis

I wish to plot in R project a cumulative histogram where on the Y axes is reported the percentage instead of the frequency x <- c(rnorm(100), rnorm(50, mean=2,sd=.5)) h <- hist(x, plot=FALSE, ...
-2
votes
1answer
195 views

how are the intervals of histogram plot identified

I was trying out a simple histogram hist(c(-2,-1,0,1,2)) the histogram has frequency equal to 2 for -2 to -1 for the above code. I am not quite getting how R places the values inside the interval ...
1
vote
1answer
475 views

bar3 colour depending on zdata

When using the bar3 function, the colours of the bars depend on the column or row the data is in. Example: data = peaks(20); bar3(data); view(-135,30) How can I make it that the colour of each ...
0
votes
2answers
1k views

Plotting two histograms of a continuous variable, with bars next to each other instead of overlapping

I am trying to plot two histograms in one plot, but the way these two groups are distributed makes the histogram a little hard to interpret. My histogram now looks like this: This is my code: ...
3
votes
1answer
1k views

ploting multiple histogram in same figure with different color in matlab

i have a 600x24 matrix a, i want to make histogram of each column in same figure but with differnet color in MATLAB, i used the following code but it did not give me rainbow color,i used the ...
4
votes
1answer
116 views

stat_bin2d with fill based on success rate

I have a table with following data: > head(sweet) interval urgency success 1 3138 761 1 2 3210 2189 1 3 3243 1256 1 4 8776 823 1 5 ...
3
votes
4answers
1k views

python plot simple histogram

I have count data (a 100 of them), each correspond to a bin (0 to 99). I need to plot these data as histogram. However, histogram count those data and does not plot correctly. import random import ...
1
vote
0answers
231 views

Overlay histogram on top and right of a plot

I am trying to create a plot similar to the one asked here: Rotate histogram in R or overlay a density in a barplot I am replacing the scatterplot with heatmap keeping everything else same without ...
1
vote
1answer
146 views

Check if a plot exists on an already open MATLAB subplot

I have a subplot in MATLAB that has already been created, its axes colors set, etc, and all ready. I then plot a histogram on it. Now I come back to it, (within a loop), and I want to check is there ...
2
votes
1answer
87 views

how many bins given some data

I have to plot some data using histograms. My data are between [0,1], with no large concentrations on any particular point. What's a good ratio between number of samples and number of bins (of equal ...
4
votes
2answers
259 views

how to set axis breaks to only a part of the axis?

In R, I plotted the following histogram. The problem is on the X axis. The majority of data fall into the interval [0, 10]. Very few have an X value larger than 10, although the largest one is 34. ...
1
vote
2answers
1k views

Log scale (x axis) histogram

what I need is a histogram with X axis displayed on a log scale. However, I still want every bar in a histogram to be of the same width. Whatever, I came up with (or upon) display bars with higher ...
3
votes
2answers
2k views

Normalizing y-axis in histograms in R ggplot to proportion

I have a very simple question causing me to bang my head on the wall. I would like to scale the y-axis of my histogram to reflect the proportion (0 to 1) that each bin makes up, instead of having the ...
0
votes
1answer
283 views

Plotting horizontal lines across histogram bars

I have an experiment where I measured the performance of some algorithms relative to three baselines. I'd therefore like to plot histograms for the algorithms, with horizontal lines of various styles ...
0
votes
1answer
717 views

3d array Matlab plot

I'm a little stuck plotting a 3D array in MATLAB. I have created some histograms that vary as I change a certain threshold. Meaning, for t=65, I have one histogram, for t=70, another and so on. I ...
2
votes
1answer
253 views

R histogram showing time spent in each bin

I'm trying to create a plot similar to the ones here: Basically I want a histogram, where each bin shows how long was spent in that range of cadence (e.g 1 hour in 0-20rpm, 3 hours in 21-40rpm, ...
0
votes
1answer
151 views

Java Histogram from three one dimensional arrays

I have three one dimensional arrays with RGB values of an image. int[] rhistogram = new int[256]; int[] ghistogram = new int[256]; int[] bhistogram = new int[256]; I need to plot them ...
3
votes
3answers
828 views

MATLAB rose plot: increasing radial increments?

I am producing many angle histogram plots using rose2.m. I would like the scale showing the number of elements in each bin to range between 0-50, increasing by increments of 10, for all plots, even if ...
0
votes
1answer
567 views

Gnuplot: Multiple histograms with different keys

I want to plot multiple rowstacked histograms on the same graph using gnuplot. A sample data file is the following: App1 20 30 50 App2 10 20 70 The script I use is this set terminal jpeg medium ...
0
votes
1answer
2k views

MATLAB histfit - get PDF from data, ksdensity?

I would like to get the equation of the density curve from a plot using histfit. I see that using ksdensity function you can get a vector of points. Is that the best way to do it?
-1
votes
1answer
670 views

Using matplotlib how could I plot a histogram with given data in python

here is the data: 111, 3 122, 4 155, 3 192, 5 11, 9 123, 10 120, 23 now how could I able to plot a histogram using this two set of data in matplotlib. please help.
1
vote
1answer
1k views

gnuplot histogram: line 0: Too many columns in using specification

I want to create a histogram of a file that contains : 1 144 12.54 2 564 02.34 3 231 01.23 4 452 07.12 and what I use for that purpose in my script is : gnuplot << EOF set ...
0
votes
2answers
3k views

How to create 3D joint density plot MATLAB?

I 'm having a problem with creating a joint density function from data. What I have is queue sizes from a stock as two vectors saved as: X = [askQueueSize bidQueueSize]; I then use the ...
0
votes
0answers
104 views

MATLAB Plotting-Group Super Object

In MATLAB, I would like to create a super "visualization" object that, for example, creates within it a normal plot() object together with its corresponding histogram (typically placed on the right of ...
1
vote
1answer
108 views

How to plot a Histogram in jython using ptolemy?

Does anyone know how to plot an array of float numbers, 30 elements, as a histogram with ptolemy in Jython? thank you
1
vote
1answer
6k views

python matplotlib imshow() custom tickmarks

I'm trying to set custom tick marks on my imshow() output, but haven't found the right combination. The script below summarizes my attempts. In this script, I'm trying to make the tickmarks at all ...
1
vote
1answer
827 views

Wrong legends when plotting histogram with `hold on`

I am plotting histograms on a subplot, where each plot has two histograms as shown in one part of the subplot below: Question: I would want the hist with variable named result_uT_per_window to have ...
2
votes
2answers
595 views

How can I express densities as percentages in R?

When I run a density histogram in R, the vertical axis shows densities as fractions. Try this, for example: hist(rnorm(100), freq = FALSE) See how the vertical axis shows "0.0", "0.1", "0.2", etc. ...
0
votes
1answer
1k views

Plot histogram and density function curve on one chart

I have a density function f, and I do MCMC sampling for it. To evaluate the goodness of the sampling, I need to plot the hist and curve within the same chart. The problem of hist(samples); ...
3
votes
1answer
810 views

How can I create a (100%) stacked histogram in R?

My dataset: I have data in the following format (here, imported from a CSV file). You can find an example dataset as CSV here. PAIR PREFERENCE 1 5 1 3 1 2 2 4 2 1 2 3 ...

1 2