Neptune-Pandas IntegrationΒΆ
This integration lets you log pandas dataframes to Neptune.

Follow these steps:
Create an experiment:
import neptune neptune.init(api_token='ANONYMOUS',project_qualified_name='shared/showroom') neptune.create_experiment()
Create and log pandas dataframes into Neptune:
import pandas as pd iris_df = pd.read_csv('https://raw.githubusercontent.com/mwaskom/seaborn-data/master/iris.csv', nrows=100)
from neptunecontrib.api import log_table log_table('pandas_df', iris_df)
Explore the results in the Neptune dashboard:
Check out this experiment in the app.
