```py df = pd.DataFrame({'x': [1, 2], 'y': [True, False]}) ggplot(df, aes('x', 'y')) + geom_point() ``` 