Displaying 1 result from an estimated 1 matches for "flowsignal".
2009 Sep 02
2
Normalized Y-axis for Histogram Density Plot
I have the following data which I tried to draw
the probability density plot.
Here is the code I have:
x <- read.table("mydat.txt");
d <- rep(x$V2,times=x$V3);
hist(d,probability=T, xlab="FlowSignal");
But why the y-axis range from 0 to 6,
instead of 0 to 1? What's the correct way to plot it?
#id flowsignal frequency
1 0.67 1
1 0.70 1
1 0.75 1
1 0.78 2
1 0.79 1
1 0.83 1
1 0.84 3
1 0.85 3
1 0.86 1
1...