Here is my code and plotted diagram. The current issue is almost all data are clustered into the first slot of histogram. Is there a way to make histogram more granular, for example, 500 or 1000 per bucket? Thanks.
library(ggplot2)
df <- read.csv('~/Downloads/foo.tsv', sep='\t', header=F, stringsAsFactors=FALSE)
names(df) <- c('foo')
df$foo <- as.numeric(df$foo)
goodValue <- df$foo
hist(goodValue,main="Some distribution",xlab="Spending")
regards, Lin