Data Studio - Usability

In order to apply a Data Driven approach within an organisation, it should be permitted to work with Available and Accessible data for all potential beneficiaries, or - in other words, make data usable for everyone.

Data Studio

To get the job done, everybody needs a good tool. That is why we have created the Data Analytics Studio. This minimalistic but powerful standalone app will make you feel confident in the world of data analytics and enable you to build data insights in order to empower business decisions.

...
Data Product

Zentadata helps domain teams to expose results of their work as a data product. Data products could be used by enterprise as a building blocks to create higher order value and functionality. Zentadata data products have following features:

  • • Self-service enabled
  • • Declaratively defined
  • • Do not require programming skills for analytics
  • • Support batch and streaming consumers
  • • Interoperable with each other
  • • Secure and meet GDPR/CCPA requirements
SQL like language

Zentadata ”SQL like language” is simple, statically typed, and makes it possible to do pretty much anything you may want to do with data. With a low learning curve, it grants tremendous efficiency.

Target auditory

  • • Data Analyst
  • • Business Analyst
  • • SME
  • • Data Scientist
  • • Non-technical users with minimal SQL knowledge
  • • Software Engineer

zen
  .read("postgres")                   // read from postgres database
  .from("users")                      // query "users" table
  .where(col("name").equalTo("John")) // filter by "name" = "John"
  .execute().show();                  // print output

// output
+-------+----------+---------+
|user_id|first_name|last_name|
+-------+----------+---------+
|1      |John      |Dow      |
+-------+----------+---------+