Skip to content

Commit 8468537

Browse files
committed
Wording improvements in integration docs
1 parent 32832da commit 8468537

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

docs/source/integration.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ The ``from_dfs`` method takes two mandatory positional parameters:
2424

2525
* A Pandas ``DataFrame``, or iterable (eg. list) of DataFrames representing the nodes of the graph.
2626
The rows of the DataFrame(s) should represent the individual nodes, and the columns should represent the node
27-
IDs and properties. The columns map directly to fields on :doc:`Nodes <./api-reference/node>`, and as such
27+
IDs and properties. The columns map directly to fields of :doc:`Node <./api-reference/node>`, and as such
2828
should follow the same naming conventions.
2929
* A Pandas ``DataFrame``, or iterable (eg. list) of DataFrames representing the relationships of the graph.
3030
The rows of the DataFrame(s) should represent the individual relationships, and the columns should represent the
31-
relationship IDs and properties. The columns map directly to fields on
32-
:doc:`Relationships <./api-reference/relationship>`, and as such should follow the same naming conventions.
31+
relationship IDs and properties. The columns map directly to fields of
32+
:doc:`Relationship <./api-reference/relationship>`, and as such should follow the same naming conventions.
3333

34-
``from_dfs`` also takes an optional property, ``node_radius_min_max``, can be used (and is used by default) to scale
35-
the node sizes for the visualization.
34+
``from_dfs`` also takes an optional property, ``node_radius_min_max``, that can be used (and is used by default) to
35+
scale the node sizes for the visualization.
3636
It is a tuple of two numbers, representing the radii (sizes) in pixels of the smallest and largest nodes respectively in
3737
the visualization.
3838
The node sizes will be scaled such that the smallest node will have the size of the first value, and the largest node
@@ -89,15 +89,15 @@ The ``from_gds`` method takes two mandatory positional parameters:
8989
* An initialized ``GraphDataScience`` object for the connection to the GDS instance, and
9090
* A ``Graph`` representing the projection that one wants to import.
9191

92-
We can also provide an optional ``size_property`` parameter, which should refer to a node property of the projection, and
93-
will be used to determine the size of the nodes in the visualization.
92+
We can also provide an optional ``size_property`` parameter, which should refer to a node property of the projection,
93+
and will be used to determine the size of the nodes in the visualization.
9494

9595
The ``additional_node_properties`` parameter is also optional, and should be a list of additional node properties of the
9696
projection that you want to include in the visualization.
9797
For example, these properties could be used to color the nodes, or give captions to them in the visualization.
9898

99-
The last optional property, ``node_radius_min_max``, can be used (and is used by default) to scale the node sizes for the
100-
visualization.
99+
The last optional property, ``node_radius_min_max``, can be used (and is used by default) to scale the node sizes for
100+
the visualization.
101101
It is a tuple of two numbers, representing the radii (sizes) in pixels of the smallest and largest nodes respectively in
102102
the visualization.
103103
The node sizes will be scaled such that the smallest node will have the size of the first value, and the largest node

0 commit comments

Comments
 (0)