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
| <script> | |
| var Keen=Keen||{configure:function(e){this._cf=e},addEvent:function(e,t,n,i){this._eq=this._eq||[],this._eq.push([e,t,n,i])},setGlobalProperties:function(e){this._gp=e},onChartsReady:function(e){this._ocrq=this._ocrq||[],this._ocrq.push(e)}};(function(){var e=document.createElement("script");e.type="text/javascript",e.async=!0,e.src=("https:"==document.location.protocol?"https://":"http://")+"dc8na2hxrj29i.cloudfront.net/code/keen-2.1.0.js";var t=document.getElementsByTagName("script")[0];t.parentNode.insertBefore(e,t)})(); | |
| var projectId = "<project_id>"; | |
| var readKey = "<project_key>"; | |
| // make sure Keen IO environment variables are set | |
| if (projectId != "" && readKey != "") { | |
| // configure the global Keen Client | |
| Keen.configure({ |
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
| var Keen=Keen||{configure:function(e){this._cf=e},addEvent:function(e,t,n,i){this._eq=this._eq||[],this._eq.push([e,t,n,i])},setGlobalProperties:function(e){this._gp=e},onChartsReady:function(e){this._ocrq=this._ocrq||[],this._ocrq.push(e)}};(function(){var e=document.createElement("script");e.type="text/javascript",e.async=!0,e.src=("https:"==document.location.protocol?"https://":"http://")+"dc8na2hxrj29i.cloudfront.net/code/keen-2.1.0.js";var t=document.getElementsByTagName("script")[0];t.parentNode.insertBefore(e,t)})(); | |
| Keen.configure({ // configure the Keen Client | |
| projectId: projectId, | |
| readKey: readKey | |
| }); | |
| Keen.onChartsReady(function() { | |
| var daysInChart = 30 |
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
| var Keen=Keen||{configure:function(e){this._cf=e},addEvent:function(e,t,n,i){this._eq=this._eq||[],this._eq.push([e,t,n,i])},setGlobalProperties:function(e){this._gp=e},onChartsReady:function(e){this._ocrq=this._ocrq||[],this._ocrq.push(e)}};(function(){var e=document.createElement("script");e.type="text/javascript",e.async=!0,e.src=("https:"==document.location.protocol?"https://":"http://")+"dc8na2hxrj29i.cloudfront.net/code/keen-2.1.0.js";var t=document.getElementsByTagName("script")[0];t.parentNode.insertBefore(e,t)})(); | |
| Keen.configure({ // configure the Keen Client | |
| projectId: projectId, | |
| readKey: readKey | |
| }); | |
| Keen.onChartsReady(function() { | |
| var numLevels = 10 | |
| var funnelSteps = prepareFunnel(numLevels) |
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
| <!DOCTYPE html> | |
| <html lang='en'> | |
| <head> | |
| <script> | |
| var Keen=Keen||{configure:function(e){this._cf=e},addEvent:function(e,t,n,i){this._eq=this._eq||[],this._eq.push([e,t,n,i])},setGlobalProperties:function(e){this._gp=e},onChartsReady:function(e){this._ocrq=this._ocrq||[],this._ocrq.push(e)}};(function(){var e=document.createElement("script");e.type="text/javascript",e.async=!0,e.src=("https:"==document.location.protocol?"https://":"http://")+"dc8na2hxrj29i.cloudfront.net/code/keen-2.1.0-min.js";var t=document.getElementsByTagName("script")[0];t.parentNode.insertBefore(e,t)})(); | |
| // Configure the Keen Client | |
| Keen.configure({ | |
| projectId: "<your project ID>", |
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
| Keen.onChartsReady(function(){ | |
| var visitors = new Keen.Metric("visited_form", { | |
| analysisType: "count" | |
| }); | |
| var formsStarted = new Keen.Metric("form_started", { | |
| analysisType: "count" | |
| }); |
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
| Keen.onChartsReady(function() { | |
| var totalRevenueSeries = new Keen.Series("transactions", { | |
| analysisType: "sum", | |
| timeframe: "last_30_days", | |
| interval: "daily", | |
| targetProperty: "amount" | |
| }); | |
| var totalActiveUsersSeries = new Keen.Series("plays", { |
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
| Keen.onChartsReady(function() { | |
| var metric = new Keen.Metric("Stripe_Events", { | |
| analysisType: "sum", | |
| targetProperty: "data.object.amount_refunded", | |
| filters: [{"property_name":"type","operator":"eq","property_value":"charge.refunded"}] | |
| }); | |
| metric.draw(document.getElementById("someDiv")); | |
| }); |
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
| Keen.onChartsReady(function() { | |
| var series = new Keen.Series("registrations", { | |
| analysisType: "count", | |
| timeframe: "last_30_weeks", | |
| interval: "weekly" | |
| }); | |
| series.getResponse(function(response){ | |
| keenData = response.result; |
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
| var query = new Keen.SavedQuery("activity_09_2013"); | |
| query.getResponse(function(response){ | |
| console.log(response.result); | |
| // Call Michelle's gross function | |
| drawMyLineChart(response, "daily", div , title) | |
| }); | |
| function drawMyLineChart(response, interval, div, title) { |
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
| require 'rubygems' | |
| require 'net/http' | |
| require 'net/https' | |
| require 'keen' | |
| require 'uri' | |
| require 'json' | |
| require 'date' | |
| # This script runs a group_by query and outputs the results to a CSV | |
| #================================oOo=================================== |