I am working on data distribution which has following follwing points.
input<-read.table("infile",header=TRUE,sep="\t")
table(input)
0.786333 1 1.04453 1.06159 1.33277 1.53607 2.25893
49 938 1 1 36 16 166
if i plot box plot for it, i get single line for lowest datum, highest datum and median.
boxplot(input)
Is there any way to distribute points by normalization so that can have better boxplot with distinct boundary for lowest datum, highest datum and median?