Skip to content

Commit

Permalink
try 1
Browse files Browse the repository at this point in the history
  • Loading branch information
bhatele committed Jul 31, 2018
1 parent 8617f13 commit fb5ce50
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#
import os
import sys
sys.path.insert(0, os.path.abspath('../hatchet'))
sys.path.insert(0, os.path.abspath('../'))


# -- Project information -----------------------------------------------------
Expand Down
8 changes: 6 additions & 2 deletions docs/userguide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ of the node and MPI rank is used to index into the dataframe.

Graph-centric Operations
------------------------
**Prune**: The ``prune`` operation is always performed after a ``filter`` is
done on the dataframe. ``Prune`` removes nodes from the graph that were
**Squash**: The ``squash`` operation is always performed after a ``filter`` is
done on the dataframe. ``Squash`` removes nodes from the graph that were
filtered out due to a previous ``filter`` operation. When one or more nodes on
a path are removed from the graph, the nearest alive ancestor is connected by
an edge to the nearest alive child on the path.
Expand All @@ -61,6 +61,9 @@ an edge to the nearest alive child on the path.
**Diff**:


**Groupby and Aggregate**:


Dataframe-centric Operations
----------------------------
**Filter**: ``filter`` takes a user supplied function and applies that to all
Expand All @@ -69,3 +72,4 @@ dataframe to only return rows that are True. The returned graphframe preserves
the graph provided as input.

**Fill**:

0 comments on commit fb5ce50

Please sign in to comment.