From 493a38df15dfc255789cc624d4a55b9914104e59 Mon Sep 17 00:00:00 2001 From: shahsaurabh0605 Date: Sat, 20 Feb 2016 23:45:30 +0530 Subject: [PATCH] Few Documentation errors solved --- Data Analysis/Searching and Combining Data.ipynb | 2 +- Data Analysis/Usage of DataFrame.ipynb | 2 +- Data Analysis/Usage of Vector.ipynb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Data Analysis/Searching and Combining Data.ipynb b/Data Analysis/Searching and Combining Data.ipynb index 3f53a95..f67af27 100644 --- a/Data Analysis/Searching and Combining Data.ipynb +++ b/Data Analysis/Searching and Combining Data.ipynb @@ -8,7 +8,7 @@ "\n", "## Arel-like query syntax\n", "\n", - "[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", + "[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", "\n", "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", "\n", diff --git a/Data Analysis/Usage of DataFrame.ipynb b/Data Analysis/Usage of DataFrame.ipynb index 20fb98d..7bdc1e4 100644 --- a/Data Analysis/Usage of DataFrame.ipynb +++ b/Data Analysis/Usage of DataFrame.ipynb @@ -1200,7 +1200,7 @@ "\n", "Statistical methods perform basic statistics on numerical Vectors only.\n", "\n", - "For a whole list of methods see the Daru::Maths::Statistics::DataFrame module.\n", + "For a whole list of methods see the Daru::Maths::Statistics::DataFrame module in the [docs](https://rubygems.org/gems/daru).\n", "\n", "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." ] diff --git a/Data Analysis/Usage of Vector.ipynb b/Data Analysis/Usage of Vector.ipynb index 68252d4..9654afa 100644 --- a/Data Analysis/Usage of Vector.ipynb +++ b/Data Analysis/Usage of Vector.ipynb @@ -503,7 +503,7 @@ "source": [ "### Basic Math\n", "\n", - "Aritmetic operations done between two vectors will always perform the aritmetic on corresponding elements of the same index.\n", + "Arithmetic operations done between two vectors will always perform the arithmetic on corresponding elements of the same index.\n", "\n", "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", "\n",