All Projects → altair-viz → Altair_notebooks

altair-viz / Altair_notebooks

Licence: bsd-3-clause
Tutorial and Examples Jupyter Notebooks for Altair

Projects that are alternatives of or similar to Altair notebooks

Spiking Neural Network Snn With Pytorch Where Backpropagation Engenders Stdp
What about coding a Spiking Neural Network using an automatic differentiation framework? In SNNs, there is a time axis and the neural network sees data throughout time, and activation functions are instead spikes that are raised past a certain pre-activation threshold. Pre-activation values constantly fades if neurons aren't excited enough.
Stars: ✭ 155 (-0.64%)
Mutual labels:  jupyter-notebook
Py Quantmod
Powerful financial charting library based on R's Quantmod | http://py-quantmod.readthedocs.io/en/latest/
Stars: ✭ 155 (-0.64%)
Mutual labels:  jupyter-notebook
Corus
Links to Russian corpora + Python functions for loading and parsing
Stars: ✭ 154 (-1.28%)
Mutual labels:  jupyter-notebook
Mgwr
Multiscale Geographically Weighted Regression (MGWR)
Stars: ✭ 155 (-0.64%)
Mutual labels:  jupyter-notebook
Learningtosee
Stars: ✭ 154 (-1.28%)
Mutual labels:  jupyter-notebook
Deep Q Learning
Stars: ✭ 155 (-0.64%)
Mutual labels:  jupyter-notebook
Stocks
Programs for stock prediction and evaluation
Stars: ✭ 155 (-0.64%)
Mutual labels:  jupyter-notebook
Keras Segmentation Deeplab V3.1
An awesome semantic segmentation model that runs in real time
Stars: ✭ 156 (+0%)
Mutual labels:  jupyter-notebook
Ml Training Advanced
Materials for the "Advanced Scikit-learn" class in the afternoon
Stars: ✭ 155 (-0.64%)
Mutual labels:  jupyter-notebook
Rnn lstm from scratch
How to build RNNs and LSTMs from scratch with NumPy.
Stars: ✭ 156 (+0%)
Mutual labels:  jupyter-notebook
Copulas
A library to model multivariate data using copulas.
Stars: ✭ 149 (-4.49%)
Mutual labels:  jupyter-notebook
Tencent social ads2017 mobile app pcvr
Tencent Social Ads 2017 contest rank 20
Stars: ✭ 155 (-0.64%)
Mutual labels:  jupyter-notebook
Ipystata
Enables the use of Stata together with Python via Jupyter (IPython) notebooks.
Stars: ✭ 154 (-1.28%)
Mutual labels:  jupyter-notebook
Surgery Robot Detection Segmentation
Object detection and segmentation for a surgery robot using Mask-RCNN on Python 3, Keras, and TensorFlow..
Stars: ✭ 155 (-0.64%)
Mutual labels:  jupyter-notebook
Fastai audio
[DEPRECATED] 🔊️ Audio with fastaiv1
Stars: ✭ 156 (+0%)
Mutual labels:  jupyter-notebook
Pytorchmedicalai
This is the hands-on deep learning tutorial series for the 2018/2019 Medical AI course by DeepOncology AI.
Stars: ✭ 155 (-0.64%)
Mutual labels:  jupyter-notebook
Carnd Camera Calibration
Images and notebook for camera calibration
Stars: ✭ 155 (-0.64%)
Mutual labels:  jupyter-notebook
Coms4995 S18
COMS W4995 Applied Machine Learning - Spring 18
Stars: ✭ 156 (+0%)
Mutual labels:  jupyter-notebook
Anomaliesinoptions
In this notebook we will explore a machine learning approach to find anomalies in stock options pricing.
Stars: ✭ 155 (-0.64%)
Mutual labels:  jupyter-notebook
Datagene
DataGene - Identify How Similar TS Datasets Are to One Another (by @firmai)
Stars: ✭ 156 (+0%)
Mutual labels:  jupyter-notebook

Jupyter Notebooks for Altair

This repository contains tutorial and example Jupyter Notebooks for Altair.

Examples Index

You can browse static version of these notebooks here on GitHub, or click one of the badges below to run these notebooks on either Binder or Colab.

Binder Colab

Example

Here is an example using Altair to quickly visualize and display a dataset with the native Vega-Lite renderer in the JupyterLab:

import altair as alt

# load a simple dataset as a pandas DataFrame
from vega_datasets import data
cars = data.cars()

alt.Chart(cars).mark_point().encode(
    x='Horsepower',
    y='Miles_per_Gallon',
    color='Origin',
)

Altair Visualization

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].