Skip to main content

This is a lib to help you plot your fency graphs from plotly in github while using Google Colab notebook.

Project description

Image of gitly

gitly: Showing plotly graphs in github

This is a home made lib to help you plot your fency graphs from plotly in github while using Google Colab notebook.

The problem: Nbviewer from Github is static!

The problem is that all fency engines that you use on notebooks doesn't run in static viewers, of course there's a lot of ways to generate static images in this libraries. But I use Google Colab by a lot in my classes and I would like to have a easy way to switch betweern dinamic plots and statics plots (to commit and share nice plots in github). So I implement this very simple implementation.

Easy switch between colab and git "renderers"

Just change from dinamic to static using:

from gitly.colab.plot import GitlyPlotter

# Instantiate the object using 'github' or 'git' for static plots
# or 'colab' for default dinamic Plotly plots
gitly = GitlyPlotter('github')

Now just pass the figure from plotly to gitly.show( fig ) and it's done!!!

import plotly.express as px

fig = px.scatter_3d( df, title="Random data")
gitly.show( fig )

Now you can commit all your fency plots in github! Congratz!

Can I use both in the same Colab notebook? Sure you can!

Just use gitly.config_render('colab') to switch back in the cell and renderer with default plot from Plotly.

Example here!

You can check that some plots you can see (used "github" view) and others that is used the standard Plotly Engine you only can see if you run this notebook in Google colab.

Simple Example

Instalation

This lib is intended to be used only on Google Colab notebooks.

Open a cell and run the following code:

!pip install gitly==1.0.1

Features

This features are only for static plots.

Change the defaults

You are able to set a default values for hight, width and scale for all your plots.

gitly.config_render('git', default_height = 600, default_width = 1000) # set default values for all gitly.show()

fig = px.scatter_3d( df, title="Random data")
gitly.show( fig )

Change the scale where ever you want, and all plots after will scale up or down:

gitly.config_render('git', scale = 0.5) # set default scale for all gitly.show()

fig = px.scatter_3d( df, title="Random data")
gitly.show( fig )

Apply change for a specific plot

Or apply an specific change only to one plot while calling .show() with more arguments:

fig = px.scatter_3d( df, title="Random data")
gitly.show( fig, height = 333, width = 777, scale = 1.5 ) # this change will be applied only for this plot

For more, check this example

License

MIT

Created without pretensions by Tiago Sanches da Silva.

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

gitly-1.1.4.tar.gz (4.4 kB view hashes)

Uploaded Source

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