Skip to content

Instantly share code, notes, and snippets.

@joshrowley
Last active December 17, 2015 02:49
Show Gist options
  • Save joshrowley/5538531 to your computer and use it in GitHub Desktop.
Save joshrowley/5538531 to your computer and use it in GitHub Desktop.
Parse Google Analytics Pageviews by Browser
require 'csv'
results = Hash.new 0
CSV.foreach('data.csv') { |row| results[row[1]] += 1 }
puts results
@joshrowley
Copy link
Author

Regex to match submission confirmation page:

submissions/\d+$

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment