Skip to content

Commit a2256d0

Browse files
docstrings
1 parent 786720a commit a2256d0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tikzplotlib/cleanfigure.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def removeData(data, id_remove):
150150

151151

152152
def removeNaNs(data):
153-
"""Removes superflous NaNs in the data, i.e. those at the end/beginning of the data and consequtive ones.
153+
"""Removes superflous NaNs in the data, i.e. those at the end/beginning of the data and consecutive ones.
154154
155155
Parameters
156156
----------
@@ -187,7 +187,7 @@ def removeNaNs(data):
187187

188188

189189
def isInBox(data, xLim, yLim):
190-
"""Returns a mask that indicates, whether a data point is within the limits
190+
"""Returns a mask that indicates, whether a data point is within the limits.
191191
192192
Parameters
193193
----------
@@ -205,7 +205,7 @@ def isInBox(data, xLim, yLim):
205205

206206

207207
def getVisualData(axhandle, linehandle):
208-
"""Returns the visual representation of the data (Respecting possible log_scaling and projection into the image plane)
208+
"""Returns the visual representation of the data (Respecting possible log_scaling and projection into the image plane).
209209
210210
Parameters
211211
----------
@@ -217,9 +217,9 @@ def getVisualData(axhandle, linehandle):
217217
Returns
218218
-------
219219
np.ndarray
220-
xData with shape [N, 1]
220+
xData with shape [N, ]
221221
np.ndarray
222-
yData with shape [N, 1]
222+
yData with shape [N, ]
223223
"""
224224
is3D = False
225225

0 commit comments

Comments
 (0)