All Projects → nicolaskruchten → Jupyter_pivottablejs

nicolaskruchten / Jupyter_pivottablejs

Licence: other
Drag’n’drop Pivot Tables and Charts for Jupyter/IPython Notebook, care of PivotTable.js

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Jupyter pivottablejs

Data Science
Collection of useful data science topics along with code and articles
Stars: ✭ 315 (-26.4%)
Mutual labels:  jupyter-notebook, data-science, data-analysis
Quantitative Notebooks
Educational notebooks on quantitative finance, algorithmic trading, financial modelling and investment strategy
Stars: ✭ 356 (-16.82%)
Mutual labels:  jupyter-notebook, data-science, data-analysis
Data Science Resources
👨🏽‍🏫You can learn about what data science is and why it's important in today's modern world. Are you interested in data science?🔋
Stars: ✭ 171 (-60.05%)
Mutual labels:  jupyter-notebook, data-science, data-analysis
Articles
A repository for the source code, notebooks, data, files, and other assets used in the data science and machine learning articles on LearnDataSci
Stars: ✭ 350 (-18.22%)
Mutual labels:  jupyter-notebook, data-science, data-analysis
Data Science Hacks
Data Science Hacks consists of tips, tricks to help you become a better data scientist. Data science hacks are for all - beginner to advanced. Data science hacks consist of python, jupyter notebook, pandas hacks and so on.
Stars: ✭ 273 (-36.21%)
Mutual labels:  jupyter-notebook, data-science, data-analysis
Datasciencevm
Tools and Docs on the Azure Data Science Virtual Machine (http://aka.ms/dsvm)
Stars: ✭ 153 (-64.25%)
Mutual labels:  jupyter-notebook, data-science, data-analysis
Edaviz
edaviz - Python library for Exploratory Data Analysis and Visualization in Jupyter Notebook or Jupyter Lab
Stars: ✭ 220 (-48.6%)
Mutual labels:  jupyter-notebook, data-analysis, interactive
Interactive machine learning
IPython widgets, interactive plots, interactive machine learning
Stars: ✭ 140 (-67.29%)
Mutual labels:  jupyter-notebook, data-science, interactive
The Elements Of Statistical Learning Python Notebooks
A series of Python Jupyter notebooks that help you better understand "The Elements of Statistical Learning" book
Stars: ✭ 405 (-5.37%)
Mutual labels:  jupyter-notebook, data-science, data-analysis
Deep Learning Machine Learning Stock
Stock for Deep Learning and Machine Learning
Stars: ✭ 240 (-43.93%)
Mutual labels:  jupyter-notebook, data-science, data-analysis
Ml Workspace
🛠 All-in-one web-based IDE specialized for machine learning and data science.
Stars: ✭ 2,337 (+446.03%)
Mutual labels:  jupyter-notebook, data-science, data-analysis
Datascience course
Curso de Data Science em Português
Stars: ✭ 294 (-31.31%)
Mutual labels:  jupyter-notebook, data-science, data-analysis
Data Science Portfolio
A Portfolio of my Data Science Projects
Stars: ✭ 149 (-65.19%)
Mutual labels:  jupyter-notebook, data-science, data-analysis
Covid19 Severity Prediction
Extensive and accessible COVID-19 data + forecasting for counties and hospitals. 📈
Stars: ✭ 170 (-60.28%)
Mutual labels:  jupyter-notebook, data-science, data-analysis
Machine learning for good
Machine learning fundamentals lesson in interactive notebooks
Stars: ✭ 142 (-66.82%)
Mutual labels:  jupyter-notebook, data-science, data-analysis
Dtale
Visualizer for pandas data structures
Stars: ✭ 2,864 (+569.16%)
Mutual labels:  jupyter-notebook, data-science, data-analysis
Datasist
A Python library for easy data analysis, visualization, exploration and modeling
Stars: ✭ 123 (-71.26%)
Mutual labels:  jupyter-notebook, data-science, data-analysis
Youtube Like Predictor
YouTube Like Count Predictions using Machine Learning
Stars: ✭ 137 (-67.99%)
Mutual labels:  jupyter-notebook, data-science, data-analysis
Amazing Feature Engineering
Feature engineering is the process of using domain knowledge to extract features from raw data via data mining techniques. These features can be used to improve the performance of machine learning algorithms. Feature engineering can be considered as applied machine learning itself.
Stars: ✭ 218 (-49.07%)
Mutual labels:  jupyter-notebook, data-science, data-analysis
Cryptocurrency Analysis Python
Open-Source Tutorial For Analyzing and Visualizing Cryptocurrency Data
Stars: ✭ 278 (-35.05%)
Mutual labels:  jupyter-notebook, data-science, data-analysis

pivottablejs: the Python module

Drag’n’drop Pivot Tables and Charts for Jupyter/IPython Notebook, care of PivotTable.js

.. image:: https://mybinder.org/badge_logo.svg :target: https://mybinder.org/v2/gh/nicolaskruchten/jupyter_pivottablejs/master?filepath=example%2Fjupyter_pivottablejs_example.ipynb

Installation

pip install pivottablejs or conda install pivottablejs

Note in the past, the conda command above installed pivottablejs-airgap_ instead of this library; apologies for any confusion this change may cause.

Usage

.. code:: python

import pandas as pd
df = pd.read_csv("some_input.csv")

from pivottablejs import pivot_ui

pivot_ui(df)

Advanced Usage

Include any JSON-serializable option to PivotTable.js's pivotUI() function_ as a keyword argument.

.. code:: python

pivot_ui(df, rows=['row_name'], cols=['col_name'])

Independently control the output file path and the URL used to access it from Jupyter, in case the default relative-URL behaviour is incompatible with Jupyter's settings.

.. code:: python

pivot_ui(df, outfile_path="/x/y.html", url="http://localhost/a/b/x.html")

.. _Jupyter/IPython Notebook: http://jupyter.org/ .. _PivotTable.js: https://github.com/nicolaskruchten/pivottable .. _pivottablejs-airgap: https://github.com/ContinuumIO/pivottablejs-airgap .. _JSON-serializable option to PivotTable.js's pivotUI() function: https://github.com/nicolaskruchten/pivottable/wiki/Parameters#options-object-for-pivotui

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].