You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am new to this, so I am trying to learn by experimenting with a few things. For my learning experiences, I am trying to help others who are completely nontechnical. For example, a special education advocate would love to have more detailed data from the state about school performance and at risk populations. This could likely be obtained through a freedom of information act request, but it shouldn't be necessary since they publish this information in a Tableau dashboard (without worksheet download access). I have cloned the TableauScraping project, and have had it run on this site (prompt.py and some examples in the README), but I am only like 50% there. How do I apply filters and extract the data in the related chart for this website? I would greatly appreciate someone's help!
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello,
I am new to this, so I am trying to learn by experimenting with a few things. For my learning experiences, I am trying to help others who are completely nontechnical. For example, a special education advocate would love to have more detailed data from the state about school performance and at risk populations. This could likely be obtained through a freedom of information act request, but it shouldn't be necessary since they publish this information in a Tableau dashboard (without worksheet download access). I have cloned the TableauScraping project, and have had it run on this site (prompt.py and some examples in the README), but I am only like 50% there. How do I apply filters and extract the data in the related chart for this website? I would greatly appreciate someone's help!
url = 'https://public.tableau.com/shared/JZ9T38Y49'
wb = ws.setFilter('County', 'Barnstable')
wb = ws.setFilter('Grade', 3)
wb = ws.setFilter('School Org Type', 'Charter Public School')
wb = ws.setFilter('Selected Populations', 'Students With Disabilities %')
wb = ws.setFilter('Subject', 'ELA')
aWs = wb.getWorksheet('M&E by Economically Disadvantaged')
Beta Was this translation helpful? Give feedback.
All reactions