Tools for analysing the structure of branching stories
Project description
A Python package to explore the structure of branching stories. Documentation <https://sellisd.github.io/storystructure/>
Requirements
The module has been developed with python 3.6.6 and the following modules. Other versions might work also but have not been tested:
pathlib2 v.2.2.0
pandas v.0.19.2
numpy v.1.11.3
Installation
pip install storystructure
Example usage
To use the package two input data files are necessary:
An edgelist file with columns source and target
A node attributes file with columns node and attribute. The attribute column must be on of the following values good, bad, pause.
from storystructure.storystructure import storystructure
# create a new object
s = storystructure.storystructure()
# load an edgelist and node attributes
s.loadStory(edges='edgelist.csv',
nodes='nodeAttributes.csv')
s.saveFig('graph'.png') # Make figure
s.simplify() # Removing self loops and double edges
s.makeGraph()
s.savePathStats('allPaths.dat')
An more detailed example is included in the jupyter notebook scripts/Tutorial.ipybn
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file storystructure-1.0.2.tar.gz.
File metadata
- Download URL: storystructure-1.0.2.tar.gz
- Upload date:
- Size: 172.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6fdb0cb21108aad1655eec5da93006b76fb424eccb1a00436992a614e9bbe363
|
|
| MD5 |
2c9773372650238c9f056478491ab1cc
|
|
| BLAKE2b-256 |
3b424e4c38ebc92ccc9e46fd12f43c9aa73251987c868b34c254b218acdb23f6
|