https://github.com/nteract/data-explorer
The Data Explorer is nteract's automatic visualization tool.
https://github.com/nteract/data-explorer
automatic-viz data-explorer data-viz
Last synced: 2 months ago
JSON representation
The Data Explorer is nteract's automatic visualization tool.
- Host: GitHub
- URL: https://github.com/nteract/data-explorer
- Owner: nteract
- License: bsd-3-clause
- Created: 2020-01-08T16:08:33.000Z (over 5 years ago)
- Default Branch: next
- Last Pushed: 2023-01-07T13:32:03.000Z (over 2 years ago)
- Last Synced: 2025-04-09T16:04:39.493Z (2 months ago)
- Topics: automatic-viz, data-explorer, data-viz
- Language: TypeScript
- Homepage: https://data-explorer.nteract.io/
- Size: 5.53 MB
- Stars: 106
- Watchers: 12
- Forks: 12
- Open Issues: 33
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-starred - nteract/data-explorer - The Data Explorer is nteract's automatic visualization tool. (others)
README
# nteract Data Explorer
[](https://mybinder.org/v2/gh/nteract/examples/master?urlpath=%2Fnteract%2Fedit%2Fpython%2Fhappiness.ipynb)
[](https://github.com/nteract/data-explorer/actions/workflows/node.js.yml)
[](https://github.com/nteract/data-explorer/actions/workflows/codeql-analysis.yml)
[](https://www.npmjs.com/package/@nteract/data-explorer)
[](http://commitizen.github.io/cz-cli/)An automatic data visualization tool.
## [Interactive Documentation](https://data-explorer.nteract.io/)
Explore the [documentation](https://data-explorer.nteract.io/).

## Creating Data Explorer
Read [Elijah Meeks](https://twitter.com/elijah_meeks)'s [post on designing the data explorer](https://blog.nteract.io/designing-the-nteract-data-explorer-f4476d53f897).
## Using the Data Explorer
To use Data Explorer in your project, use the following approach.
```bash
yarn add @nteract/data-explorer
```Install `react` and `styled-components` if you are not already using them.
```bash
yarn add react styled-components
```The `data` prop must be a [tabular data resource `application/vnd.dataresource+json`](https://frictionlessdata.io/specs/tabular-data-resource/)
```jsx
// Default import complete with right side toolbar
import DataExplorer from "@nteract/data-explorer";;
```Or, with custom `Toolbar` position:
```jsx
// Individual components as named imports
import { DataExplorer, Toolbar, Viz } from "@nteract/data-explorer";
;// Toolbar is optional
;
```## How do I contribute to this repo?
If you are interested in contributing to nteract, please read the [contribution guidelines](./CONTRIBUTING.md) for information on how to set up your nteract repo for development, how to update documentation, and how to submit your code changes for review on GitHub.