Created
May 2, 2014 09:22
-
-
Save ESeufert/143fb9b9f8ca455b94ee to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
var data = getData(); | |
data = createAverages(data); | |
buildLineChart(data, "Retention", | |
['d1_retention', 'd7_retention', 'd30_retention'], | |
1000, 300, "Date", "Retention (percentage)"); | |
buildLineChart(data, "Daily New Users", ['DNU'], 500, 300, "Date", "New Users"); | |
buildLineChart(data, "Daily Active Users", ['DAU'], 500, 300, "Date", "Users"); | |
buildLineChart(data, "Average Session Length", ['average_session_length'], 500, 300, "Date", "Session Length (minutes)"); | |
buildLineChart(data, "Average Sessions per User", ['average_sessions_per_user'], 500, 300, "Date", "Sessions per User"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment