- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
How to do more data visualisation in zeppelin notebook?
Created on ‎02-22-2017 09:59 AM - edited ‎08-19-2019 03:41 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I'm using HDP 2.5. The zeppelin service running successfully, when i create a zeppelin notebook with sample data, For eg; list of data available like this below;
id | name | specialisation | city | state |
001 | xxx | Android | Bronx | NY |
002 | yyy | ROR | Rome | NY |
003 | zzz | IOS | Bronx | NY |
004 | ppp | Bigdata | Dallas | TX |
005 | qqq | Android | Dallas | TX |
In pie chart is display list of states by using below query
%sql select state,count(1) AS states from sample_data where state!='' GROUP BY state ORDER BY states DESC
In sqltable is display list of column by using using below query;
%sql select id,name,specialisation,city,state from sample_data
My question, When i select particular state from this pie chart, For eg TX, The sql table is automatically filtered with selected portion of pie chart. Please tell me how do i make this feature in zeppelin.
Created ‎03-22-2017 07:48 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Varun,
I do not believe this functionality exist for Zeppelin at this time. You would beed an additional query to complete this task.
