How can I plot a frequency distribution in R? I don\'t want to bin values. I just want to plot frequency for each value. The hist function insists on binning values
hist
You could plot the table of your data:
plot
table
xx<-sample(1:10,100,replace=TRUE) plot(table(xx))