All Projects → parulnith → An-Overview-of-Python-Datatable-package

parulnith / An-Overview-of-Python-Datatable-package

Licence: other
Python library for efficient multi-threaded data processing, with the support for out-of-memory datasets.

Programming Languages

Jupyter Notebook
11667 projects

Labels

Projects that are alternatives of or similar to An-Overview-of-Python-Datatable-package

Primereact
The Most Complete React UI Component Library
Stars: ✭ 2,393 (+10304.35%)
Mutual labels:  datatable
au-datatable
Aurelia Datatable, A highly customizable html datatable, build for the Aurelia Framework.
Stars: ✭ 21 (-8.7%)
Mutual labels:  datatable
mern-admin-panel
Admin-panel using ReactJs, ExpressJs, NodeJs, MongoDB and Bootstrap
Stars: ✭ 84 (+265.22%)
Mutual labels:  datatable
Django Datatable
django-datatable is a customizable table application of django based on jquery datatable.
Stars: ✭ 167 (+626.09%)
Mutual labels:  datatable
Datatable
A go in-memory table
Stars: ✭ 215 (+834.78%)
Mutual labels:  datatable
EasyDataTable
易用和全面的纯Ajax分页插件(中文)
Stars: ✭ 18 (-21.74%)
Mutual labels:  datatable
Vue Table
data table simplify! -- vuetable is a Vue.js component that will automatically request (JSON) data from the server and display them nicely in html table with swappable/extensible pagination component.
Stars: ✭ 1,833 (+7869.57%)
Mutual labels:  datatable
datatableton
100 exercises to learn Python Datatable
Stars: ✭ 245 (+965.22%)
Mutual labels:  datatable
Vuetable 2 Tutorial
Stars: ✭ 251 (+991.3%)
Mutual labels:  datatable
svelte-datagrid
Svelte data grid spreadsheet best best features and performance from excel
Stars: ✭ 48 (+108.7%)
Mutual labels:  datatable
Vuetable 2
data table simplify! -- datatable component for Vue 2.x. See documentation at
Stars: ✭ 2,129 (+9156.52%)
Mutual labels:  datatable
React Table
⚛️ Hooks for building fast and extendable tables and datagrids for React
Stars: ✭ 15,739 (+68330.43%)
Mutual labels:  datatable
DataTableEditor
一个Unity的数据表编辑器工具
Stars: ✭ 67 (+191.3%)
Mutual labels:  datatable
Amexio.github.io
Amexio is a rich set of Angular 7 (170+) components powered by HTML5 & CSS3 for Responsive Design and with 80+ Material Design Themes, UI Components, Charts, Gauges, Data Point Widgets, Dashboards. Amexio is completely Open Sourced and Free. It's based on Apache 2 License. You can use it in your production grade work today at no cost or no obligation.
Stars: ✭ 163 (+608.7%)
Mutual labels:  datatable
react-material-ui-datatable
Material UI Datatable in React way
Stars: ✭ 24 (+4.35%)
Mutual labels:  datatable
Weihanli.npoi
NPOI Extensions, excel/csv importer/exporter for IEnumerable<T>/DataTable, fluentapi(great flexibility)/attribute configuration
Stars: ✭ 157 (+582.61%)
Mutual labels:  datatable
ConsoleTools
A set of tools and "controls" for the .net Console.
Stars: ✭ 67 (+191.3%)
Mutual labels:  datatable
vue-ele-table
vue-ele-table | 基于 element-ui 数据驱动表格
Stars: ✭ 33 (+43.48%)
Mutual labels:  datatable
vuetable-2-tutorial-bootstrap
No description or website provided.
Stars: ✭ 32 (+39.13%)
Mutual labels:  datatable
podtable
No dependency responsive table library to fit large table data set into small device screen
Stars: ✭ 16 (-30.43%)
Mutual labels:  datatable

An Overview of Python's Datatable package

Binder

Python library for efficient multi-threaded data processing, with the support for out-of-memory datasets.

If you are an R user, chances are that you have already been using the data.table package. Data.table is an extension of the data.frame package in R. It's also the go-to package for R users when it comes to the fast aggregation of large data (including 100GB in RAM).

The R's data.table package is a very versatile and a high-performance package due to its ease of use, convenience and programming speed. It is a fairly famous package in the R community with over 400k downloads per month and almost 650 CRAN and Bioconductor packages using it(source).

So, what is in it for the Python users? Well, the good news is that there also exists a Python counterpart to thedata.table package called datatable which has a clear focus on big data support, high performance, both in-memory and out-of-memory datasets, and multi-threaded algorithms. In a way, it can be called as data.table's younger sibling.

Installation

On MacOS systems installing datatable is as easy as

pip install datatable

On Linux you can install a binary distribution as

# If you have Python 3.5
pip install https://s3.amazonaws.com/h2o-release/datatable/stable/datatable-0.8.0/datatable-0.8.0-cp35-cp35m-linux_x86_64.whl

# If you have Python 3.6
pip install https://s3.amazonaws.com/h2o-release/datatable/stable/datatable-0.8.0/datatable-0.8.0-cp36-cp36m-linux_x86_64.whl

On all other platforms a source distribution will be needed. For more information see Build instructions.

Blog

An Overview of Python’s Datatable package

References

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