I am able to create 2 figures using ggplot in Python with following code:
gg1 = ggplot(aes(x=\'PL\', y=\'SL\'), data=irisdf) gg1 += geom_point() print(gg1) g