Skip to content

Commit d3a443b

Browse files
Intro "4. PyGMT I/O: Table inputs": Fix typos (#2921)
1 parent 7285bc8 commit d3a443b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/get_started/04_table_inputs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383

8484
# Pass a pandas.DataFrame to the 'data' parameter
8585
df = pd.DataFrame(np.array([[7.0, 3.0], [9.0, 2.0]]), columns=["x", "y"])
86-
fig.plot(data=df, style="a0.5c", fill="blue")
86+
fig.plot(data=df, style="a0.2c", fill="blue")
8787

8888
fig.show()
8989

@@ -94,7 +94,7 @@
9494
# If you're working with geospatial data, you can read your data as a
9595
# :class:`geopandas.GeoDataFrame` object and pass it to the ``data``
9696
# parameter. This is useful if your data is stored in a geospatial data format
97-
# (e.g., GeoJSON, etc.) that GMT and PyGMT does not support natively.
97+
# (e.g., GeoJSON, etc.) that GMT and PyGMT do not support natively.
9898

9999
# Example GeoDataFrame
100100
gdf = gpd.GeoDataFrame(

0 commit comments

Comments
 (0)