CSE 163
Data Visualization
Arpan Kapoor�Summer 2026��💭Icebreaker (discuss with neighbors):
How is your summer going so far?
Add to our Slido!
#2348882
Announcements
#2348882
Project Part 1
#2348882
Default Parameters
def greetings(to: str = 'world'):
return 'Hello ' + to + '!'
greetings('Sarah') # 'Hello Sarah!'
greetings(to='Antonio') # 'Hello Antonio!'
greetings() # 'Hello world!'
#2348882
Python Data Visualization
#2348882
Encoding Effectiveness
[Mackinlay 86]
#2348882
Color Encoding Example
#2348882
Area Encoding Example
#2348882
Readability is Important!
Did the number of deaths go up or down after the law was enacted?
This graphic was posted in an articly by Business Insider
(graphic made by Reuters)
#2348882
How to Lie with Data Visualization
#2348882
How to Lie with Data Visualization
#2348882
Remember…
#2348882