Skip to content

Commit 0cf46b8

Browse files
risenWgitbook-bot
authored andcommitted
GitBook: [master] 25 pages modified
1 parent 85a6fc7 commit 0cf46b8

25 files changed

+1666
-90
lines changed

SUMMARY.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@
9696
* [Series.tail](api-reference/series/series.tail.md)
9797
* [Series.head](api-reference/series/series.head.md)
9898
* [Dataframe](api-reference/dataframe/README.md)
99+
* [DataFrame.tensor](api-reference/dataframe/dataframe.tensor.md)
99100
* [DataFrame.rename](api-reference/dataframe/dataframe.rename-1.md)
100101
* [DataFrame.print](api-reference/dataframe/dataframe.print.md)
101102
* [DataFrame.to\_table](api-reference/dataframe/dataframe.to_table.md)
@@ -108,15 +109,14 @@
108109
* [DataFrame.drop](api-reference/dataframe/dataframe.drop.md)
109110
* [DataFrame.nunique](api-reference/dataframe/dataframe.nunique.md)
110111
* [DataFrame.corr](api-reference/dataframe/dataframe.corr.md)
111-
* [DataFrame.lt](api-reference/dataframe/dataframe.lt.md)
112112
* [DataFrame.astype](api-reference/dataframe/dataframe.astype.md)
113113
* [DataFrame.shape](api-reference/dataframe/dataframe.shape.md)
114114
* [DataFrame.size](api-reference/dataframe/dataframe.size.md)
115115
* [DataFrame.axes](api-reference/dataframe/dataframe.axes.md)
116116
* [DataFrame.ndim](api-reference/dataframe/dataframe.ndim.md)
117117
* [DataFrame.values](api-reference/dataframe/dataframe.values.md)
118118
* [DataFrame.select\_dtypes](api-reference/dataframe/dataframe.select_dtypes.md)
119-
* [DataFrame.dtypes](api-reference/dataframe/dataframe.dtypes.md)
119+
* [DataFrame.ctypes](api-reference/dataframe/dataframe.dtypes.md)
120120
* [DataFrame.index](api-reference/dataframe/dataframe.index.md)
121121
* [DataFrame.loc](api-reference/dataframe/danfo.dataframe.loc.md)
122122
* [DataFrame.iloc](api-reference/dataframe/danfo.dataframe.iloc.md)

api-reference/dataframe/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ description: 'Two-dimensional, size-mutable, potentially heterogeneous tabular d
4545
| [`DataFrame.div`](danfo.dataframe.div.md) | Get Floating division of dataframe and other, element-wise \(binary operator truediv\). |
4646
| [`DataFrame.mod`](danfo.dataframe.mod.md) | Get Modulo of dataframe and other, element-wise \(binary operator mod\). |
4747
| [`DataFrame.pow`](danfo.dataframe.pow.md) | Get Exponential power of dataframe and other, element-wise \(binary operator pow\). |
48-
| [`DataFrame.lt`](dataframe.lt.md) | Get Less than of dataframe and other, element-wise \(binary operator lt\). |
48+
| [`DataFrame.lt`]() | Get Less than of dataframe and other, element-wise \(binary operator lt\). |
4949
| [`DataFrame.gt`](danfo.dataframe.gt.md) | Get Greater than of dataframe and other, element-wise \(binary operator gt\). |
5050
| [`DataFrame.le`](danfo.dataframe.le.md) | Get Less than or equal to of dataframe and other, element-wise \(binary operator le\). |
5151
| [`DataFrame.ge`]() | Get Greater than or equal to of dataframe and other, element-wise \(binary operator ge\). |

api-reference/dataframe/danfo.dataframe.iloc.md

+2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ Allowed inputs are:
4444
* A list or array of integers, e.g. `[4, 3, 0]`.
4545
* A string slice object with ints, e.g. `"1:7"`
4646

47+
_**Note:** both the start and the stop labels are included._
48+
4749
`.iloc` will raise`IndexError` if a requested indexer is out-of-bounds.
4850

4951
### **Indexing specific rows by index and return all columns**

api-reference/dataframe/danfo.dataframe.loc.md

+112-78
Large diffs are not rendered by default.

api-reference/dataframe/dataframe.astype.md

+394
Large diffs are not rendered by default.
+45-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,48 @@
1+
---
2+
description: >-
3+
Return an Object containing the axes of the DataFrame. It has the row axis
4+
labels and column axis labels as the only members. They are returned in that
5+
order.
6+
---
7+
18
# DataFrame.axes
29

3-
axes
10+
danfo.DataFrame.**axes** \[[source](https://github.com/opensource9ja/danfojs/blob/eb5919d2cac34271fc3b725fa24aa3ad4eacde37/danfojs/src/core/generic.js#L290)\]
11+
12+
**Returns:**
13+
14+
****return **Object**
15+
16+
## **Examples**
17+
18+
{% tabs %}
19+
{% tab title="Node" %}
20+
```javascript
21+
const dfd = require("danfojs")
22+
23+
let data = [{"A": [-20.1, 30, 47.3, -20]},
24+
{"B": [34, -4, 5, 6]},
25+
{"C": [20, -20, 30, -40]}]
26+
let df = new dfd.DataFrame(data, {index: ["a", "b", "c", "d"]})
27+
28+
console.log(df.axes)
29+
30+
31+
```
32+
{% endtab %}
33+
34+
{% tab title="Browser" %}
35+
```
36+
37+
```
38+
{% endtab %}
39+
{% endtabs %}
40+
41+
{% tabs %}
42+
{% tab title="Output" %}
43+
```text
44+
{ index: [ 'a', 'b', 'c', 'd' ], columns: [ 'A', 'B', 'C' ] }
45+
```
46+
{% endtab %}
47+
{% endtabs %}
448

+100-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,101 @@
1-
# DataFrame.dtypes
1+
---
2+
description: >-
3+
Return the inferred column types in the DataFrame. This returns a Series with
4+
the data type of each column. The result’s index is the original DataFrame’s
5+
columns.
6+
---
7+
8+
# DataFrame.ctypes
9+
10+
danfo.DataFrame.**dtypes** \[[source](https://github.com/opensource9ja/danfojs/blob/eb5919d2cac34271fc3b725fa24aa3ad4eacde37/danfojs/src/core/frame.js#L1848)\]
11+
12+
**Returns:**
13+
14+
****return **Series**
15+
16+
## **Examples**
17+
18+
Returns auto-generated ****index of a ****DataFrame
19+
20+
{% tabs %}
21+
{% tab title="Node" %}
22+
```javascript
23+
const dfd = require("danfojs")
24+
25+
let data = [{"A": [-20.1, 30, 47.3, -20]},
26+
{"B": [34, -4, 5, 6]},
27+
{"C": [20, -20, 30, -40]}]
28+
let df = new dfd.DataFrame(data)
29+
30+
df.ctypes.print()
31+
```
32+
{% endtab %}
33+
34+
{% tab title="Browser" %}
35+
```
36+
37+
```
38+
{% endtab %}
39+
{% endtabs %}
40+
41+
{% tabs %}
42+
{% tab title="Output" %}
43+
```text
44+
╔═══╤══════════════════════╗
45+
║ │ 0 ║
46+
╟───┼──────────────────────╢
47+
║ A │ float32 ║
48+
╟───┼──────────────────────╢
49+
║ B │ int32 ║
50+
╟───┼──────────────────────╢
51+
║ C │ int32 ║
52+
╚═══╧══════════════════════╝
53+
```
54+
{% endtab %}
55+
{% endtabs %}
56+
57+
Columns with mixed types are represented as **string.**
58+
59+
{% tabs %}
60+
{% tab title="Node" %}
61+
```javascript
62+
63+
const dfd = require("danfojs")
64+
65+
let data = [{"A": [-20.1, 30, 47.3, -20]},
66+
{"B": [34, -4, 5, 6]},
67+
{"C": [20, -20, 30, -40]},
68+
{"D": ["a", "b", 20, 2.5]}]
69+
let df = new dfd.DataFrame(data)
70+
71+
df.ctypes.print()
72+
```
73+
{% endtab %}
74+
75+
{% tab title="Browser" %}
76+
```
77+
78+
```
79+
{% endtab %}
80+
{% endtabs %}
81+
82+
{% tabs %}
83+
{% tab title="Output" %}
84+
```text
85+
╔═══╤══════════════════════╗
86+
║ │ 0 ║
87+
╟───┼──────────────────────╢
88+
║ A │ float32 ║
89+
╟───┼──────────────────────╢
90+
║ B │ int32 ║
91+
╟───┼──────────────────────╢
92+
║ C │ int32 ║
93+
╟───┼──────────────────────╢
94+
║ D │ string ║
95+
╚═══╧══════════════════════╝
96+
```
97+
{% endtab %}
98+
{% endtabs %}
99+
100+
**Note**: To cast a type, use the [astype](dataframe.astype.md) method.
2101

+74
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,76 @@
1+
---
2+
description: The index (row labels) of the DataFrame.
3+
---
4+
15
# DataFrame.index
26

7+
danfo.DataFrame.**index** \[[source](https://github.com/opensource9ja/danfojs/blob/3398c2f540c16ac95599a05b6f2db4eff8a258c9/danfojs/src/core/frame.js#L940)\]
8+
9+
**Returns:**
10+
11+
****return **new DataFrame**
12+
13+
## **Examples**
14+
15+
Returns auto-generated ****index of a ****DataFrame
16+
17+
{% tabs %}
18+
{% tab title="Node" %}
19+
```javascript
20+
const dfd = require("danfojs")
21+
22+
let data = [{"A": [-20.1, 30, 47.3, -20]},
23+
{"B": [34, -4, 5, 6]},
24+
{"C": [20, -20, 30, -40]}]
25+
let df = new dfd.DataFrame(data)
26+
27+
console.log(df.index);
28+
```
29+
{% endtab %}
30+
31+
{% tab title="Browser" %}
32+
```
33+
34+
```
35+
{% endtab %}
36+
{% endtabs %}
37+
38+
{% tabs %}
39+
{% tab title="Output" %}
40+
```text
41+
[0, 1, 2, 3]
42+
```
43+
{% endtab %}
44+
{% endtabs %}
45+
46+
Returns set ****index of a ****DataFrame
47+
48+
{% tabs %}
49+
{% tab title="Node" %}
50+
```javascript
51+
const dfd = require("danfojs")
52+
53+
let data = [{"A": [-20.1, 30, 47.3, -20]},
54+
{"B": [34, -4, 5, 6]},
55+
{"C": [20, -20, 30, -40]}]
56+
let df = new dfd.DataFrame(data, {index: ["r1", "r2", "r3", "r4"])
57+
58+
console.log(df.index);
59+
```
60+
{% endtab %}
61+
62+
{% tab title="Browser" %}
63+
```
64+
65+
```
66+
{% endtab %}
67+
{% endtabs %}
68+
69+
{% tabs %}
70+
{% tab title="Output" %}
71+
```text
72+
[ 'r1', 'r2', 'r3', 'r4' ]
73+
```
74+
{% endtab %}
75+
{% endtabs %}
76+

api-reference/dataframe/dataframe.lt.md

-2
This file was deleted.
+46
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,48 @@
1+
---
2+
description: >-
3+
Return an int representing the number of axes / array dimensions. Returns 1 if
4+
Series. Otherwise return 2 for DataFrame.
5+
---
6+
17
# DataFrame.ndim
28

9+
danfo.DataFrame.**ndim** \[[source](https://github.com/opensource9ja/danfojs/blob/eb5919d2cac34271fc3b725fa24aa3ad4eacde37/danfojs/src/core/generic.js#L290)\]
10+
11+
**Returns:**
12+
13+
****return **Int**
14+
15+
**Note:** To get the **shape** of the DataFrame use the .[shape](dataframe.shape.md) property.
16+
17+
## **Examples**
18+
19+
{% tabs %}
20+
{% tab title="Node" %}
21+
```javascript
22+
const dfd = require("danfojs")
23+
24+
let data = [{"A": [-20.1, 30, 47.3, -20]},
25+
{"B": [34, -4, 5, 6]},
26+
{"C": [20, -20, 30, -40]}]
27+
let df = new dfd.DataFrame(data)
28+
29+
console.log(df.ndim)
30+
31+
```
32+
{% endtab %}
33+
34+
{% tab title="Browser" %}
35+
```
36+
37+
```
38+
{% endtab %}
39+
{% endtabs %}
40+
41+
{% tabs %}
42+
{% tab title="Output" %}
43+
```text
44+
2
45+
```
46+
{% endtab %}
47+
{% endtabs %}
48+

0 commit comments

Comments
 (0)