Fix typos in docs

This commit is contained in:
Alexander Bezzubov 2016-07-14 09:53:07 +09:00
parent 158ba6ad26
commit aca2bdf76c

View file

@ -95,7 +95,7 @@ z.show(plt, height='150px')
## Pandas integration
Apace Zeppelin [Table Display System]({{BASE_PATH}}/displaysystem/basicdisplaysystem.html#table) provides build-in data visualization capabilities. Python interpreter leverages it to visualize Pandas DataFrames though similar `z.show()` API, same as with [Matplotlib integration](#matplotlib-integration).
Apache Zeppelin [Table Display System]({{BASE_PATH}}/displaysystem/basicdisplaysystem.html#table) provides built-in data visualization capabilities. Python interpreter leverages it to visualize Pandas DataFrames though similar `z.show()` API, same as with [Matplotlib integration](#matplotlib-integration).
Example:
@ -105,9 +105,9 @@ rates = pd.read_csv("bank.csv", sep=";")
z.show(rates)
```
## SQL over DataFrames
## SQL over Pandas DataFrames
There is a convenience `%python.sql` interpreter that matches Apache Spark experience in Zeppelin and enables usage of SQL language to query Pandas DataFrames and visualization of results though build-in [Table Dispaly System]({{BASE_PATH}}/displaysystem/basicdisplaysystem.html#table).
There is a convenience `%python.sql` interpreter that matches Apache Spark experience in Zeppelin and enables usage of SQL language to query [Pandas DataFrames](http://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.html) and visualization of results though built-in [Table Display System]({{BASE_PATH}}/displaysystem/basicdisplaysystem.html#table).
**Pre-requests**
@ -130,9 +130,9 @@ rates = pd.read_csv("bank.csv", sep=";")
SELECT * FROM rates WHERE age < 40
```
Otherwise it can be reffered as `%python.sql`
Otherwise it can be referred to as `%python.sql`
## Technical description
For in-depth technical details on current implementation plese reffer [python/README.md](https://github.com/apache/zeppelin/blob/master/python/README.md).
For in-depth technical details on current implementation please refer to [python/README.md](https://github.com/apache/zeppelin/blob/master/python/README.md).