Skip to content
Snippets Groups Projects
Commit eae5c410 authored by Pospelov, Gennady's avatar Pospelov, Gennady
Browse files

Fix line length in Python example

parent 250e5fd1
No related branches found
No related tags found
No related merge requests found
...@@ -84,6 +84,7 @@ if __name__ == '__main__': ...@@ -84,6 +84,7 @@ if __name__ == '__main__':
xpeaks = [peak[0] for peak in peaks] xpeaks = [peak[0] for peak in peaks]
ypeaks = [peak[1] for peak in peaks] ypeaks = [peak[1] for peak in peaks]
print(peaks) print(peaks)
plt.plot(xpeaks, ypeaks, linestyle='None', marker='x', color='white', markersize=10) plt.plot(xpeaks, ypeaks, linestyle='None', marker='x', color='white',
markersize=10)
plt.show() plt.show()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment