All Projects → koaning → drawdata

koaning / drawdata

Licence: MIT license
Draw datasets from within Jupyter.

Programming Languages

python
139335 projects - #7 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to drawdata

Jupyter Tips And Tricks
Using Project Jupyter for data science.
Stars: ✭ 245 (-51%)
Mutual labels:  jupyter
appmode
Creating web applications with Jupyter and Binder
Stars: ✭ 37 (-92.6%)
Mutual labels:  jupyter
wxyz
Some Experimental Widgets
Stars: ✭ 25 (-95%)
Mutual labels:  jupyter
Nbdev
Create delightful python projects using Jupyter Notebooks
Stars: ✭ 3,061 (+512.2%)
Mutual labels:  jupyter
governance
The governance process and model for Project Jupyter
Stars: ✭ 74 (-85.2%)
Mutual labels:  jupyter
voila-gpx-viewer
GPX Viewer web app built with Jupyter, ipywidgets, ipyleaflet, bqplot and voila
Stars: ✭ 43 (-91.4%)
Mutual labels:  jupyter
Ploomber
A convention over configuration workflow orchestrator. Develop locally (Jupyter or your favorite editor), deploy to Airflow or Kubernetes.
Stars: ✭ 221 (-55.8%)
Mutual labels:  jupyter
ipyp5
p5.js Jupyter Widget
Stars: ✭ 33 (-93.4%)
Mutual labels:  jupyter
angr-cli
Repo for various angr ipython features to give it more of a cli feeling
Stars: ✭ 41 (-91.8%)
Mutual labels:  jupyter
antinex-core
Network exploit detection using highly accurate pre-trained deep neural networks with Celery + Keras + Tensorflow + Redis
Stars: ✭ 19 (-96.2%)
Mutual labels:  jupyter
Qtconsole
Jupyter Qt Console
Stars: ✭ 252 (-49.6%)
Mutual labels:  jupyter
Bokeh
Interactive Data Visualization in the browser, from Python
Stars: ✭ 15,822 (+3064.4%)
Mutual labels:  jupyter
DashIntro
A quick intro to Dash made for the PyData event in Zurich
Stars: ✭ 57 (-88.6%)
Mutual labels:  jupyter
Egal
easy drawing in jupyter
Stars: ✭ 251 (-49.8%)
Mutual labels:  jupyter
nimbo
Run compute jobs on AWS as if you were running them locally.
Stars: ✭ 126 (-74.8%)
Mutual labels:  jupyter
Tslab
Interactive JavaScript and TypeScript programming with Jupyter
Stars: ✭ 240 (-52%)
Mutual labels:  jupyter
argparse-to-class
Transform argparse into class format for Jupyter Notebook execution
Stars: ✭ 20 (-96%)
Mutual labels:  jupyter
itikz
Cell and line magic for PGF/TikZ-to-SVG rendering in Jupyter notebooks
Stars: ✭ 55 (-89%)
Mutual labels:  jupyter
cornerstone widget
A jupyter widget for the cornerstone library to make showing flashy images with nice tools easier.
Stars: ✭ 25 (-95%)
Mutual labels:  jupyter
ClimateLaboratoryBook
JupyterBook source for The Climate Laboratory
Stars: ✭ 74 (-85.2%)
Mutual labels:  jupyter

drawdata

This small python app allows you to draw a dataset in a jupyter notebook. This should be very useful when teaching machine learning algorithms.

You can get the same tooling from going to calmcode labs but with this library you'll also be able to use it from within jupyter. This will save you a precious tab in the browser.

Installation

Installation occurs via pip.

python -m pip install drawdata

To read the data, pandas is useful:

python -m pip install pandas

Usage

When you run this from jupyter, you should load in an iframe.

from drawdata import draw_scatter

draw_scatter()

Once you're done drawing you can copy the data to the clipboard. After this you can use pandas to read the clipboard to get your drawn data into a dataframe.

import pandas as pd 
pd.read_clipboard(sep=",")
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].