Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

How to do more data visualisation in zeppelin notebook?

avatar
Expert Contributor

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 namespecialisationcitystate
001xxxAndroidBronxNY
002yyyRORRomeNY
003zzz IOSBronxNY
004pppBigdataDallasTX
005qqqAndroidDallasTX

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 

12793-piechart1.jpg

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.

1 REPLY 1

avatar
Contributor

Varun,

I do not believe this functionality exist for Zeppelin at this time. You would beed an additional query to complete this task.