Skip to main content

Update a dataset via UI

You can also add rows to your dataset manually in the UI. Click the (+ Example) button to add a row, then edit its attributes directly in the interface.

Update a dataset via Code

You can add new examples to an existing dataset programmatically. Datasets are version-controlled, so you can still access previous versions.
  • Version 7: Use update_dataset() to replace the dataset with a new version containing your data.
  • Version 8: Use append_examples() to add new examples to the latest dataset version. Ability to update existing examples is coming soon.
from arize import ArizeClient

client = ArizeClient(api_key="your-arize-api-key")
client.datasets.append_examples(dataset_id="your-dataset-id", examples=df)
See here for more details on append_examples, see