diff options
| author | Priyansh <[email protected]> | 2022-01-20 21:27:29 -0500 |
|---|---|---|
| committer | Priyansh <[email protected]> | 2022-01-20 21:27:29 -0500 |
| commit | d0a25bcbfcd80dc8b41a8a134d7722431c821782 (patch) | |
| tree | 1c259781966991d10bc4574f694a3fe21252dcac | |
| parent | a4db9e6cda1648df3269fadb03dc5c5a704334f1 (diff) | |
| download | izuku.js-d0a25bcbfcd80dc8b41a8a134d7722431c821782.tar.xz izuku.js-d0a25bcbfcd80dc8b41a8a134d7722431c821782.zip | |
docs: added table of contents
| -rw-r--r-- | README.md | 26 |
1 files changed, 26 insertions, 0 deletions
@@ -7,6 +7,32 @@ The core of Izuku is the `Frame` class that represents a 2D array of data. It is > **Note**: Izuku is not a replacement for Pandas and should not be used for data analysis. It is designed to be used for data visualization and debugging. It can, however, handle large datasets and help you understand your data better but comes at some cost in performance. Since, Pandas is based on NumPy, and NumPy is written in C, Pandas would be much faster than Izuku. +## Table of Contents +- [Izuku](#izuku) + * [Table of Contents](#table-of-contents) + * [Using Izuku](#using-izuku) + * [Frame Properties](#frame-properties) + + [`rowdata`](#-rowdata-) + + [`columns`](#-columns-) + + [`size`](#-size-) + + [`shape`](#-shape-) + * [Frame Methods](#frame-methods) + + [`data()` ](#-data--------https---imgshieldsio-badge-chainable-greensvg-style-plastic-) + + [`header()` ](#-header--------https---imgshieldsio-badge-chainable-greensvg-style-plastic-) + + [`column()` ](#-column--------https---imgshieldsio-badge-chainable-greensvg-style-plastic-) + - [Get a single column](#get-a-single-column) + - [Get multiple columns](#get-multiple-columns) + + [`row()` ](#-row--------https---imgshieldsio-badge-chainable-greensvg-style-plastic-) + - [Get a single row](#get-a-single-row) + - [Get multiple rows](#get-multiple-rows) + + [`head()` ](#-head--------https---imgshieldsio-badge-not-20chainable-redsvg-style-plastic-) + + [`tail()` ](#-tail--------https---imgshieldsio-badge-not-20chainable-redsvg-style-plastic-) + + [`show()` ](#-show--------https---imgshieldsio-badge-not-20chainable-redsvg-style-plastic-) + + [`info()` ](#-info--------https---imgshieldsio-badge-not-20chainable-redsvg-style-plastic-) + * [Chaining Methods](#chaining-methods) + * [Cloning and Building this Repository](#cloning-and-building-this-repository) + + ## Using Izuku ```js |
