Getting started¶
Install¶
$ pip install dataguy
Usage in three lines¶
import os
import seaborn as sns
import dataguy as dg
# Set the Anthropic API key as an environment variable
os.environ["ANTHROPIC_API_KEY"] = "your_anthropic_api_key_here"
from dataguy import DataGuy
dg = dg.DataGuy()
iris = sns.load_dataset("iris")
dg.set_data(iris)
dg.wrangle_data()
...
What next?¶
Browse the API reference.
See the Jupyter notebook examples in the examples/ folder.