Extraordinary Attorney Woo Poll Analysis


When the status shows  READY , click the run button and wait for the graph to appear. Move the slider bar around or click on its adjacent value and type in a new percentage, with another wait for each re-rendering, to see the potential impact of demographics on the reported sentiments. The actual percentage of diagnosed/suspected autistic respondents is 21.1%. Everyone's participation is greatly appreciated.

 

print('\x1b[6;30;42m' + 'Gathering analysis tools . . .' + '\033[30m')
!pip install pandas
print('\x1b[6;30;42m' + 'Gathering visulaization tools . . .' + '\033[30m')
!pip install seaborn
print('\x1b[6;30;42m' + 'Gathering survey data . . .' + '\033[30m')
%matplotlib widget
import urllib.request
analysis = urllib.request.urlopen('https://whalejellycs.github.io/eawbya.txt')
analysis_str = analysis.read()
analysis.close()
print('\x1b[6;30;42m' + 'Graph rendering in progress . . .' + '\033[30m')
exec(analysis_str)