```python from lets_plot import * LetsPlot.setup_html() data = {'x': [0, 1], 'y': [0, 1], \ 'text': ['Lorem ipsum #1', 'Lorem ipsum #2']} ggplot(data, aes('x', 'y')) + geom_text(aes(label='text')) ``` <img src="https://user-images.githubusercontent.com/26162403/109486694-45385400-7a94-11eb-8575-a0b83479d97b.png" width="400" height="300" />