Skip to content

Commit

Permalink
Updated docs for pandas removal
Browse files Browse the repository at this point in the history
  • Loading branch information
NullConvergence committed Oct 6, 2020
1 parent 4790466 commit ff01f05
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The only requirement is to have Python >=3.5 and Docker installed on your system

#### 1.2 Install using pip

The production release can be installed using pip:
The production release can be installed using pip:

```
$ pip install graphrepo
Expand Down Expand Up @@ -96,7 +96,7 @@ MATCH (n) DETACH DELETE n;
#### 3.2 Delete a limited number commits and relationshipss

```
MATCH (n:Commit)
MATCH (n:Commit)
// Take the first 100 commits nodes and their rels
WITH n LIMIT 100
DETACH DELETE n
Expand Down
4 changes: 4 additions & 0 deletions docs/source/examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ Examples
In the project's repository there are many examples on how to
use GraphRepo to index and mine data.

Please note that in order to run the plotting examples you have to install ``pandas`` and ``plotly``, for example using pip::

$ pip install pandas

1. Index data
==============

Expand Down

0 comments on commit ff01f05

Please sign in to comment.