We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2077b72 commit 6e40267Copy full SHA for 6e40267
src/tikzplotlib/_line2d.py
@@ -279,7 +279,8 @@ def _table(obj, data): # noqa: C901
279
data["current axes"].axis_options.append("unbounded coords=jump")
280
281
plot_table = [
282
- f"{x:{xformat}}{col_sep}{y:{ff}}{table_row_sep}" for x, y in zip(xdata, ydata)
+ f"{x:{xformat}}{col_sep}{y:{ff}}{table_row_sep}" for x, y in zip(
283
+ xdata[::data["every n dot"]], ydata[::data["every n dot"]])
284
]
285
286
min_extern_length = 3
0 commit comments