search for: file1,3

Displaying 1 result from an estimated 1 matches for "file1,3".

2007 Jun 19
1
Histograms with strings, grouped by repeat count (w/ data)
...re that out myself after I understand how to write this funky histogram expression. With the help of Verzani's introductory text, I've learned how to read in the CSV data and do some simple tables, like this: hist(table(d$filename)) hist(table(d$filename[substring(d$filename, 1, 5)=="file1"])) hist(sort(table(d$filename[substring(d$filename, 1, 5)=="file1"]))) Obviously, these commands count the frequency of the files. What I'd like to see are the repeats grouped along the x-axis; I'd like to find, for all files, the distribution of retries. I hope that mak...