Skip to main content

A framework and specification language for simulating data based on user-defined graphical models

Project description

DagSim

Binder

DagSim is a Python-based framework and specification language for simulating data based on a Directed Acyclic Graph ( DAG) structure, without any constraints on variable types or functional relations. A succinct YAML format for defining the structure of the simulation model promotes transparency, while separate user-provided functions for generating each variable based on its parents ensure the modularization of the simulation code.

Link to the paper: https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0284443

Installation

DagSim can be easily installed using pip.

Installing DagSim using pip

To install the DagSim package using pip, run:

pip install dagsim

Quickstart

To check that DagSim is installed properly, run the following command in the console/terminal:

dagsim-quickstart

Installing graphviz

If you use pip, you need to install graphviz on the system level in order to use the drawing functionality in DagSim. Please follow the instrcutions here on how to install graphviz depending on the operating system.

Simple example

Python code

Suppose we are interested in simulating two variables, X and Y, where X follows a standard Gaussian distribution, and Y is the square of X.

For each node we need a function to simulate the node's values:

  • For X, we can use the numpy.random.normal function
  • For Y, we can use either numpy.power or define our own function. We will use the second to illustrate how one can use user-define functions.
# needed imports
import dagsim.base as ds
import numpy as np

Here, we define our own square function:

def square(arg):
    return arg * arg

Then, we define the nodes in our graph/model by giving each node a name, the function to use in order to evaluate its value, and the arguments of the function, if any:

X = ds.Node(name="X", function=np.random.normal)
Y = ds.Node(name="Y", function=square, kwargs={"arg": X})

After that, we define the graph itself by giving it a name (optional) and a list of all the nodes to be included:

graph = ds.Graph(name="demo_graph", list_nodes=[X, Y])

If you wish, you can draw the graph by calling the draw method, as follows:

graph.draw()

Finally, we simulate data from this graph by calling the simulate method, and giving it the number of samples you want to simulate, and a name for the csv_file (optional) where the data should be saved.

data = graph.simulate(num_samples=10, csv_name="demo_data")

Here, data would be a dictionary with keys being the names of the nodes in the graph, and the corresponding values being the simulated values for each node returned as a Python list.

For more detailed instructions, check this page, and for other simple examples, please refer to the tutorials folder.

YAML Specification

dagsim also allows the specification of a simulation using a YAML file. You can run dagsim on a YAML file by running:

dagsim path/to/yaml/file [-v|--verbose] [-d|--draw] [-o output/path|--output_path=output/path]

For a tutorial on using a YAMl file for simulation, check this page.

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

dagsim-1.0.10.tar.gz (29.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dagsim-1.0.10-py3-none-any.whl (30.4 kB view details)

Uploaded Python 3

File details

Details for the file dagsim-1.0.10.tar.gz.

File metadata

  • Download URL: dagsim-1.0.10.tar.gz
  • Upload date:
  • Size: 29.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for dagsim-1.0.10.tar.gz
Algorithm Hash digest
SHA256 3bcb6e7e9c3374d6926a29ed9b3d230ee6d3d0f7c5d8a619d18735f5ebe10771
MD5 212fdecedcdc5913f7c6f90e9bd34382
BLAKE2b-256 0c2338bf9472e11adf6b583b29dcc535fec2e4a7d1273b136fc04f38922be11a

See more details on using hashes here.

File details

Details for the file dagsim-1.0.10-py3-none-any.whl.

File metadata

  • Download URL: dagsim-1.0.10-py3-none-any.whl
  • Upload date:
  • Size: 30.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for dagsim-1.0.10-py3-none-any.whl
Algorithm Hash digest
SHA256 f42307f8d18fbef66faaf82302f7034f5e4746a94ce0c872acf19f98e45fa61b
MD5 b64ff1dc13b547143f619f5fddfac37c
BLAKE2b-256 67e6663b8bccb5195219000b830ccc65564f508c25a69adbb286c677f082c8a1

See more details on using hashes here.

Supported by

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