Raw data to Visualizations for everyone.
ViZualiZe is a platform of data visualization scripts. Anyone can post scripts to the platform. When a script is posted, it will generate a report for a specific types of documents. When that is shared anyone can use that script to generate the same report from different data.
With ViZualiZe, raw data can be used to generate stunning reports with just few clicks. It is simple to use to any non-tech use as well. Simply upload the data and let ViZualiZe visualize it.
Visualize can be used somethings similar to iPython notebook or R notes where the operations are predefined but the data changes. This is a common pattern with data scientists and ViZualiZe will take it to general public.
ViZualiZe does not send data to remote servers. It download the script to run from internet and download it locally on the browser.
Sample use cases 1. Git log 2. Salesforce reports 3. Facebook Api responses 4. Twitter streams
function(emit, item){
}
You can add new entries to the pipe by calling emit
with any data. For example,
// Input data is list of friends
Sam, Alex
Ann, Sam,
Alex, Kevin
function(emit, item){
const [friend1, friend2] = item.split(',');
emit(friend1);
emit(friend2);
// or conditionally emit
// if (){ emit (somethings)}
// you can emit things outside the array
// emit([friend1, 1])
}
//will results in
Sam
Alex
Ann
Sam
Alex
Kevin
function(array){
}
this will be the full array. This can be used to aggregate, manipulate the array.
function(array){
}
This can do the actual dom rendering.
View the screencast:
https://www.youtube.com/watch?v=t8F6FR08nps
looks interesting.
https://www.angularattack.com/entries/1800-codearcs
Great job for a hackathon
Looks like you invested quite some time into it
Only after watching the screencast I understood what I needed to do, so maybe reduce the choice and just show a wizard at the front screen.
good job
Pasindu Perera
thank you for trying out. we were refining the idea in along the way