Before using plotnine you need to install it. This can easily be done with pip
:
# Load plotnine
from plotnine import ggplot, geom_point, aes
import pandas as pd
# Sample data
x = [1,2,3,4,5,6,7,8,9,10]
y = [10,9,8,7,6,5,4,3,2,1]
df = pd.DataFrame({'x':x, 'y':y})
# Create a chart
(
ggplot(df, aes(x='x', y='y')) +
geom_point()
)
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4