I've got a CSV file of about 30K rows and I'm reading that into a variable using
bugs=read.table("bugs.txt", sep="~", header=T, stringsAsFactors=F)
I'm building a simple plot using qplot
with
qplot(data=bugs, x=version) + theme(axis.text.x = element_text(angle = 90, hjust = 1))
The issue is that the graph includes all the data. What I'd like to do is eliminate any versions where the count is less than say 250. Is that possible to do without trimming the actual dataset itself manually?
The columns of my csv are
id~reporter~component~created~status~version
I'm pretty new to R and trying to learn it with some data from our bug tracking software.
thank you