https://github.com/mkcor/plotly-demo
Presentation material
https://github.com/mkcor/plotly-demo
Last synced: 4 months ago
JSON representation
Presentation material
- Host: GitHub
- URL: https://github.com/mkcor/plotly-demo
- Owner: mkcor
- Created: 2015-07-14T03:39:27.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-08-17T19:20:09.000Z (almost 11 years ago)
- Last Synced: 2025-08-13T15:59:11.940Z (10 months ago)
- Size: 133 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data visualization with Plotly and programmatic back-ends
## Slideshow
[http://slides.com/mariannecorvellec/plotly-demo/](http://slides.com/mariannecorvellec/plotly-demo/)
## Setup
I suggest you run [Python 3](https://www.python.org/) because it's the future.
I strongly encourage you to make use of [virtual environments](https://virtualenv.pypa.io/).
Python 3 ships with `virtualenv` but, on Ubuntu 14.04, initiating a virtual environment with
$ python3 -m venv ~/.virtualenv/plotly-demo-env
currently errors, so I had to use
$ virtualenv --python=python3.4 ~/.virtualenv/plotly-demo-env
Yes, I tend to keep my virtualenvs under `~/.virtualenv/`; adapt to your own tree and practices.
$ source ~/.virtualenv/plotly-demo-env/bin/activate
$ pip install --upgrade pip
$ pip install -r requirements.txt
$ alias ipython="python -c 'import IPython; IPython.terminal.ipapp.launch_new_instance()'"
$ ipython notebook
Let me tell you that I read many [Stack Overflow](http://stackoverflow.com/) answers to have
[Jupyter](https://jupyter.org/) (IPython 3) run successfully the Python 3 kernel!
Update: I would now suggest that you
$ pip install --upgrade ipython
$ pip install notebook
$ jupyter notebook