Skip to content

Commit

Permalink
fixes #167
Browse files Browse the repository at this point in the history
  • Loading branch information
timkpaine committed Sep 21, 2018
1 parent a78c5fa commit c127a49
Show file tree
Hide file tree
Showing 23 changed files with 39,337 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
examples/* linguist-documentation
experimental/* linguist-documentation
experimental/beaker/* linguist-documentation
experimental/widgets/* linguist-documentation
experimental/widgets/applications/* linguist-documentation
docs/* linguist-documentation
tests/notebooks/* linguist-documentation
tests/notebooks/*/* linguist-documentation
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Lantern
An orchestration layer for plots and tables, dummy datasets, research, reports, and anything else a data scientist might need.
An orchestration layer for plots and tables, dummy datasets, widgets, research, reports, and anything else a data scientist might need.

[![Build Status](https://travis-ci.org/timkpaine/lantern.svg?branch=master)](https://travis-ci.org/timkpaine/lantern)
[![GitHub issues](https://img.shields.io/github/issues/timkpaine/lantern.svg)]()
Expand Down
Binary file added docs/img/widgets/variableinspector.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ An orchestration layer for plots and tables, dummy datasets, research, reports,
plot
table
export
widgets
publish


Expand Down
12 changes: 12 additions & 0 deletions docs/widgets.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
==============
Widget Tools
==============

Variable Inspector
===================
.. method:: lantern.VariableInspector()


.. image:: ./img/widgets/variableinspector.png
:scale: 100%
:alt: variableinspector.png
86 changes: 86 additions & 0 deletions examples/widgets.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [],
"source": [
"l.VariableInspector()"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [],
"source": [
"x = 5"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {},
"outputs": [],
"source": [
"y = 6"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [],
"source": [
"z = l.bar()"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {},
"outputs": [],
"source": [
"n = z[z.columns[0]]"
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {},
"outputs": [],
"source": [
"a = n.values"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.0"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Loading

0 comments on commit c127a49

Please sign in to comment.