Skip to content

Commit d00b662

Browse files
committed
Merge pull request #8 from shahsaurabh0605/notebook
Few Documentation errors solved
2 parents d4bad4b + 493a38d commit d00b662

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Data Analysis/Searching and Combining Data.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"\n",
99
"## Arel-like query syntax\n",
1010
"\n",
11-
"[Arel](https://github.com/rails/arel) is a very popular ruby gem that is one of the major components of the most popular ruby frameworks, [Rails](https://github.com/rails/rails). It is an ORM-helper of sorts that exposes a beatiful and intuitive syntax for creating SQL strings by chaining Ruby methods.\n",
11+
"[Arel](https://github.com/rails/arel) is a very popular ruby gem that is one of the major components of the most popular ruby frameworks, [Rails](https://github.com/rails/rails). It is an ORM-helper of sorts that exposes a beautiful and intuitive syntax for creating SQL strings by chaining Ruby methods.\n",
1212
"\n",
1313
"In daru, we have successfully adopted this syntax and the result is a very intuitive and readable syntax for obtaining any sort of data from a DataFrame or Vector.\n",
1414
"\n",

Data Analysis/Usage of DataFrame.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1200,7 +1200,7 @@
12001200
"\n",
12011201
"Statistical methods perform basic statistics on numerical Vectors only.\n",
12021202
"\n",
1203-
"For a whole list of methods see the Daru::Maths::Statistics::DataFrame module.\n",
1203+
"For a whole list of methods see the Daru::Maths::Statistics::DataFrame module in the [docs](https://rubygems.org/gems/daru).\n",
12041204
"\n",
12051205
"To demonstrate, the `#mean` method calculates the mean of each numeric vector and returns a Daru::Vector with the vector's name as the index alongwith the corresponding value."
12061206
]

Data Analysis/Usage of Vector.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@
503503
"source": [
504504
"### Basic Math\n",
505505
"\n",
506-
"Aritmetic operations done between two vectors will always perform the aritmetic on corresponding elements of the same index.\n",
506+
"Arithmetic operations done between two vectors will always perform the arithmetic on corresponding elements of the same index.\n",
507507
"\n",
508508
"The concerned vectors need not have the same size of even the same index. In case of a mismatch, a sorted union of the indexes of both the Vectors is used as an index for the resulting vector.\n",
509509
"\n",

0 commit comments

Comments
 (0)