''' Translate ggplot(mtcars, aes(x = mpg, y = hp)) + geom_point() to python In Python ''' !pip install ggplot from ggplot import * ggplot(mtcars, aes(x='mpg', y='hp')) + geom_point()