Skip to main content

Teaching tool on the importance of data visualization.

Project description

Data Morph transforms an input dataset of 2D points into select shapes, while preserving the summary statistics to a given number of decimal points through simulated annealing.

Morphing the panda dataset into the star shape.

Installation

Data Morph can be installed from PyPI using pip:

$ pip install data-morph-ai

Alternatively, Data Morph can be installed with conda by specifying the conda-forge channel:

$ conda install -c conda-forge data-morph-ai

Usage

Once installed, Data Morph can be used on the command line or as an importable Python package. Below are some examples; be sure to check out the documentation for more information.

Command Line Usage

Run data-morph on the command line:

$ data-morph --start-shape panda --target-shape star

This produces the animation in the newly-created morphed_data directory within your current working directory (shown above).


See all available CLI options by passing in --help:

$ data-morph --help

Python Usage

The DataMorpher class performs the morphing from a Dataset to a Shape. Any pandas.DataFrame with numeric columns x and y can be a Dataset. Use the DataLoader to create the Dataset from a file or use a built-in dataset:

from data_morph.data.loader import DataLoader

dataset = DataLoader.load_dataset('panda')

For morphing purposes, all target shapes are placed/sized based on aspects of the Dataset class. All shapes are accessible via the ShapeFactory class:

from data_morph.shapes.factory import ShapeFactory

shape_factory = ShapeFactory(dataset)
target_shape = shape_factory.generate_shape('star')

With the Dataset and Shape created, here is a minimal example of morphing:

from data_morph.morpher import DataMorpher

morpher = DataMorpher(
    decimals=2,
    in_notebook=False,  # whether you are running in a Jupyter Notebook
    output_dir='data_morph/output',
)

result = morpher.morph(start_shape=dataset, target_shape=target_shape)

Note that the result variable in the above code block is a pandas.DataFrame of the data after completing the specified iterations of the simulated annealing process. The DataMorpher.morph() method is also saving plots to visualize the output periodically and make an animation; these end up in data_morph/output, which we set as DataMorpher.output_dir.


In this example, we morphed the built-in panda Dataset into the star Shape. Be sure to try out the other built-in options:

  • The DataLoader.AVAILABLE_DATASETS attribute contains a list of available datasets, which are also visualized in the DataLoader documentation.

  • The ShapeFactory.AVAILABLE_SHAPES attribute contains a list of available shapes, which are also visualized in the ShapeFactory documentation.

Acknowledgements

This code has been altered by Stefanie Molin (@stefmolin) to work for other input datasets by parameterizing the target shapes with information from the input shape. The original code works for a specific dataset called the "Datasaurus" and was created for the paper Same Stats, Different Graphs: Generating Datasets with Varied Appearance and Identical Statistics through Simulated Annealing by Justin Matejka and George Fitzmaurice (ACM CHI 2017).

The paper and video can be found on the Autodesk Research website here. The version of the code placed on GitHub at jmatejka/same-stats-different-graphs, served as the starting point for the Data Morph code base, which is on GitHub at stefmolin/data-morph.

Read more about the creation of Data Morph here.

Citations

If you use this software, please cite both Data Morph (DOI: 10.5281/zenodo.7834197) and Same Stats, Different Graphs: Generating Datasets with Varied Appearance and Identical Statistics through Simulated Annealing by Justin Matejka and George Fitzmaurice (ACM CHI 2017).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

data-morph-ai-0.2.0.tar.gz (10.9 MB view details)

Uploaded Source

Built Distribution

data_morph_ai-0.2.0-py3-none-any.whl (104.1 kB view details)

Uploaded Python 3

File details

Details for the file data-morph-ai-0.2.0.tar.gz.

File metadata

  • Download URL: data-morph-ai-0.2.0.tar.gz
  • Upload date:
  • Size: 10.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for data-morph-ai-0.2.0.tar.gz
Algorithm Hash digest
SHA256 23b22a133b8fdf673ed47321dc74d8cfa4ea78178bb0dcd8169eeb7ce7583490
MD5 c727232bd8768a4908e10152ef3dab89
BLAKE2b-256 03de497891d62a7812986e908b58112a0f1a74fb5f215cfedc6189d7a3f3211a

See more details on using hashes here.

File details

Details for the file data_morph_ai-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for data_morph_ai-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3b449eede1a0ee81c61defbf0799b6aaab5ffbcbe0d36cbfb47d684f273084dd
MD5 9914c8e7b9f62c7e229b1e3da85d5a11
BLAKE2b-256 9a4a3da3109a373bcdd59cd80a74f2efab528649c459e2441b312f1f121024be

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page