You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 17, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: doc/md-api/groupedDataframe.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,13 +2,13 @@
2
2
3
3
# GroupedDataFrame
4
4
5
-
[src/groupedDataframe.js:10-118](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/groupedDataframe.js#L10-L118"Source code on GitHub")
5
+
[src/groupedDataframe.js:10-118](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/groupedDataframe.js#L10-L118"Source code on GitHub")
6
6
7
7
Grouped DataFrame structure grouping DataFrame rows by column value.
8
8
9
9
## constructor
10
10
11
-
[src/groupedDataframe.js:21-25](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/groupedDataframe.js#L21-L25"Source code on GitHub")
11
+
[src/groupedDataframe.js:21-25](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/groupedDataframe.js#L21-L25"Source code on GitHub")
12
12
13
13
Create a GroupedDataFrame. Used in DataFrame.groupBy('columnName').
14
14
@@ -28,7 +28,7 @@ new GroupedDataFrame(df, 'column1');
28
28
29
29
## toCollection
30
30
31
-
[src/groupedDataframe.js:63-65](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/groupedDataframe.js#L63-L65"Source code on GitHub")
31
+
[src/groupedDataframe.js:63-65](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/groupedDataframe.js#L63-L65"Source code on GitHub")
32
32
33
33
Convert GroupedDataFrame into collection (Array) of dictionnaries (Object).
[src/groupedDataframe.js:74-82](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/groupedDataframe.js#L74-L82"Source code on GitHub")
45
+
[src/groupedDataframe.js:74-82](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/groupedDataframe.js#L74-L82"Source code on GitHub")
[src/groupedDataframe.js:90-92](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/groupedDataframe.js#L90-L92"Source code on GitHub")
63
+
[src/groupedDataframe.js:90-92](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/groupedDataframe.js#L90-L92"Source code on GitHub")
[src/groupedDataframe.js:100-102](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/groupedDataframe.js#L100-L102"Source code on GitHub")
77
+
[src/groupedDataframe.js:100-102](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/groupedDataframe.js#L100-L102"Source code on GitHub")
[src/groupedDataframe.js:112-117](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/groupedDataframe.js#L112-L117"Source code on GitHub")
91
+
[src/groupedDataframe.js:112-117](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/groupedDataframe.js#L112-L117"Source code on GitHub")
Copy file name to clipboardExpand all lines: doc/md-api/modules/matrix.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,13 +2,13 @@
2
2
3
3
# Matrix
4
4
5
-
[src/modules/matrix.js:9-94](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/modules/matrix.js#L9-L94"Source code on GitHub")
5
+
[src/modules/matrix.js:9-94](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/modules/matrix.js#L9-L94"Source code on GitHub")
6
6
7
7
Matrix module for DataFrame, providing basic mathematical matrix computations.
8
8
9
9
## constructor
10
10
11
-
[src/modules/matrix.js:14-17](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/modules/matrix.js#L14-L17"Source code on GitHub")
11
+
[src/modules/matrix.js:14-17](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/modules/matrix.js#L14-L17"Source code on GitHub")
12
12
13
13
Start the Matrix module.
14
14
@@ -18,7 +18,7 @@ Start the Matrix module.
18
18
19
19
## isCommutative
20
20
21
-
[src/modules/matrix.js:28-30](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/modules/matrix.js#L28-L30"Source code on GitHub")
21
+
[src/modules/matrix.js:28-30](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/modules/matrix.js#L28-L30"Source code on GitHub")
22
22
23
23
Check if two DataFrames are commutative, if both have the same dimensions.
[src/modules/matrix.js:40-53](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/modules/matrix.js#L40-L53"Source code on GitHub")
40
+
[src/modules/matrix.js:40-53](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/modules/matrix.js#L40-L53"Source code on GitHub")
41
41
42
42
Provide an elements pairwise addition of two DataFrames having the same dimensions.
43
43
@@ -55,7 +55,7 @@ Returns **DataFrame** A new DataFrame resulting to the addition two DataFrames.
55
55
56
56
## product
57
57
58
-
[src/modules/matrix.js:63-65](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/modules/matrix.js#L63-L65"Source code on GitHub")
58
+
[src/modules/matrix.js:63-65](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/modules/matrix.js#L63-L65"Source code on GitHub")
59
59
60
60
Provide a scalar product between a number and a DataFrame.
61
61
@@ -73,7 +73,7 @@ Returns **DataFrame** A new DataFrame resulting to the scalar product.
73
73
74
74
## dot
75
75
76
-
[src/modules/matrix.js:75-93](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/modules/matrix.js#L75-L93"Source code on GitHub")
76
+
[src/modules/matrix.js:75-93](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/modules/matrix.js#L75-L93"Source code on GitHub")
Copy file name to clipboardExpand all lines: doc/md-api/modules/sql.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,13 +2,13 @@
2
2
3
3
# SQL
4
4
5
-
[src/modules/sql.js:9-102](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/modules/sql.js#L9-L102"Source code on GitHub")
5
+
[src/modules/sql.js:9-102](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/modules/sql.js#L9-L102"Source code on GitHub")
6
6
7
7
SQL module for DataFrame, providing SQL-like syntax for data exploration in DataFrames.
8
8
9
9
## constructor
10
10
11
-
[src/modules/sql.js:85-88](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/modules/sql.js#L85-L88"Source code on GitHub")
11
+
[src/modules/sql.js:85-88](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/modules/sql.js#L85-L88"Source code on GitHub")
12
12
13
13
Start the SQL module.
14
14
@@ -18,7 +18,7 @@ Start the SQL module.
18
18
19
19
## register
20
20
21
-
[src/modules/sql.js:97-100](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/modules/sql.js#L97-L100"Source code on GitHub")
21
+
[src/modules/sql.js:97-100](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/modules/sql.js#L97-L100"Source code on GitHub")
22
22
23
23
Register the DataFrame as temporary table.
24
24
@@ -35,7 +35,7 @@ df.sql.register('tmp');
35
35
36
36
## request
37
37
38
-
[src/modules/sql.js:19-21](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/modules/sql.js#L19-L21"Source code on GitHub")
38
+
[src/modules/sql.js:19-21](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/modules/sql.js#L19-L21"Source code on GitHub")
39
39
40
40
Request on a SQL query.
41
41
@@ -53,7 +53,7 @@ Returns **any** The result of the query.
53
53
54
54
## dropTables
55
55
56
-
[src/modules/sql.js:28-30](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/modules/sql.js#L28-L30"Source code on GitHub")
56
+
[src/modules/sql.js:28-30](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/modules/sql.js#L28-L30"Source code on GitHub")
57
57
58
58
Drop or remove all registered tables.
59
59
@@ -65,7 +65,7 @@ DataFrame.dropTables();
65
65
66
66
## dropTable
67
67
68
-
[src/modules/sql.js:38-40](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/modules/sql.js#L38-L40"Source code on GitHub")
68
+
[src/modules/sql.js:38-40](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/modules/sql.js#L38-L40"Source code on GitHub")
69
69
70
70
Drop or remove a registered table.
71
71
@@ -81,7 +81,7 @@ DataFrame.dropTable('tmp1');
81
81
82
82
## renameTable
83
83
84
-
[src/modules/sql.js:50-53](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/modules/sql.js#L50-L53"Source code on GitHub")
84
+
[src/modules/sql.js:50-53](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/modules/sql.js#L50-L53"Source code on GitHub")
[src/modules/sql.js:61-63](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/modules/sql.js#L61-L63"Source code on GitHub")
102
+
[src/modules/sql.js:61-63](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/modules/sql.js#L61-L63"Source code on GitHub")
[src/modules/sql.js:74-79](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/modules/sql.js#L74-L79"Source code on GitHub")
116
+
[src/modules/sql.js:74-79](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/modules/sql.js#L74-L79"Source code on GitHub")
Copy file name to clipboardExpand all lines: doc/md-api/modules/stat.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,13 +2,13 @@
2
2
3
3
# Stat
4
4
5
-
[src/modules/stat.js:6-128](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/modules/stat.js#L6-L128"Source code on GitHub")
5
+
[src/modules/stat.js:6-128](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/modules/stat.js#L6-L128"Source code on GitHub")
6
6
7
7
Stat module for DataFrame, providing basic statistical metrics for numeric columns.
8
8
9
9
## constructor
10
10
11
-
[src/modules/stat.js:11-14](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/modules/stat.js#L11-L14"Source code on GitHub")
11
+
[src/modules/stat.js:11-14](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/modules/stat.js#L11-L14"Source code on GitHub")
12
12
13
13
Start the Stat module.
14
14
@@ -18,7 +18,7 @@ Start the Stat module.
18
18
19
19
## sum
20
20
21
-
[src/modules/stat.js:23-27](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/modules/stat.js#L23-L27"Source code on GitHub")
21
+
[src/modules/stat.js:23-27](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/modules/stat.js#L23-L27"Source code on GitHub")
[src/modules/stat.js:36-40](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/modules/stat.js#L36-L40"Source code on GitHub")
39
+
[src/modules/stat.js:36-40](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/modules/stat.js#L36-L40"Source code on GitHub")
[src/modules/stat.js:49-53](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/modules/stat.js#L49-L53"Source code on GitHub")
57
+
[src/modules/stat.js:49-53](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/modules/stat.js#L49-L53"Source code on GitHub")
[src/modules/stat.js:62-67](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/modules/stat.js#L62-L67"Source code on GitHub")
75
+
[src/modules/stat.js:62-67](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/modules/stat.js#L62-L67"Source code on GitHub")
[src/modules/stat.js:77-79](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/modules/stat.js#L77-L79"Source code on GitHub")
93
+
[src/modules/stat.js:77-79](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/modules/stat.js#L77-L79"Source code on GitHub")
[src/modules/stat.js:89-95](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/modules/stat.js#L89-L95"Source code on GitHub")
112
+
[src/modules/stat.js:89-95](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/modules/stat.js#L89-L95"Source code on GitHub")
[src/modules/stat.js:105-107](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/modules/stat.js#L105-L107"Source code on GitHub")
131
+
[src/modules/stat.js:105-107](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/modules/stat.js#L105-L107"Source code on GitHub")
132
132
133
133
Compute the standard deviation into a numeric column.
[src/modules/stat.js:116-127](https://github.com/Gmousse/dataframe-js/blob/8a48a6b558c15609a1a49ddd1d0f3ed8553cbfc0/src/modules/stat.js#L116-L127"Source code on GitHub")
150
+
[src/modules/stat.js:116-127](https://github.com/Gmousse/dataframe-js/blob/79ee230612b2c1ef1cf281fb110ecadd2da4e121/src/modules/stat.js#L116-L127"Source code on GitHub")
151
151
152
152
Compute all the stats available with the Stat module on a numeric column.
0 commit comments