Skip to content

Instantly share code, notes, and snippets.

Created October 10, 2013 15:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/6920144 to your computer and use it in GitHub Desktop.
Save anonymous/6920144 to your computer and use it in GitHub Desktop.
CSV
[
["Days", "Orders", "Items ", "AOV", "Average Item/Order"],
["14-Dec-13", 45, 90, 45, 2],
["15-Dec-13", 15, 40, 23, 2.5]
]
[
{
"Days": "14-Dec-13",
"Orders": 45,
"Items": 90,
"AOV": 45.00,
"Average Item/Order": 2
},
{
"Days": "15-Dec-13",
"Orders": 15,
"Items": 40,
"AOV": 23.00,
"Average Item/Order": 2.5
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment