Skip to content

Source code for examples from the GitHub page for stharrold, "Data Science Demos".

License

Notifications You must be signed in to change notification settings

stharrold/dsdemos

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dsdemos

Source code for examples from Data Science Demos.

Version numbers follow Semantic Versioning v2.0.0. (Version numbers have format 'N.N.N[-X]', where N are integer numbers and X is an optional label string. Git tags of versions have format 'vN.N.N[-X]'.)

Installation

dsdemos requires Python 3x.

To download and checkout the current version, clone the repository, add dsdemos to the module search path, then import:

$ git clone https://github.com/stharrold/dsdemos.git
$ python
>>> import os
>>> import sys
>>> sys.path.insert(0, os.path.join(os.path.curdir, r'dsdemos'))
>>> import dsdemos as dsd

To update and checkout a specific version (e.g. v0.0.5), update your local repository then checkout the version's tag:

$ cd dsdemos
$ git pull
$ git checkout tags/v0.0.5
$ cd ..
$ python
>>> import os
>>> import sys
>>> sys.path.insert(0, os.path.join(os.path.curdir, r'dsdemos'))
>>> import dsdemos as dsd
>>> dsd.__version__
'0.0.5'

Testing

Use pytest within dsdemos:

$ git clone https://github.com/stharrold/dsdemos.git
$ cd dsdemos
$ py.test -v

About

Source code for examples from the GitHub page for stharrold, "Data Science Demos".

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages