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: README.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
@@ -6,8 +6,8 @@
6
6
dataframe-js provides another way to work with data in javascript (browser or server side) by using DataFrame, a data structure already used in some languages (Python, R, ...).
7
7
8
8
A DataFrame is simply built on two concepts:
9
-
-**Columns**providing ways to select your data and reorganize them.
10
-
-**Rows**providing ways to modify or filter your data.
9
+
-**Columns**provide ways to select your data and reorganize them.
10
+
-**Rows**provide ways to modify or filter your data.
11
11
12
12
````javascript
13
13
constdf=newDataFrame(rawData, columns)
@@ -56,7 +56,7 @@ Complete API documentation: [Index](./doc/md-api/index.md)
56
56
57
57
### Examples
58
58
59
-
[A simple use of DataFrame into the browser](./examples/example.html)
59
+
[A simple use of DataFrame for data exploration tasks](./examples/titanic_analysis.js)
60
60
61
61
[Unit tests](./tests/)
62
62
@@ -75,7 +75,7 @@ var DataFrame = dfjs.DataFrame;
75
75
76
76
#### DataFrame Creation
77
77
78
-
You can create a DataFrame by using different ways:
0 commit comments