 |
Data in X-Y plotted in polar coordinates.
Source code name: "data_p1d_polar.py"
Programming language: Python
Topic: Data arrays/P1D
DMelt Version 1. Last modified: 12/08/2015. License: Pro
https://datamelt.org/code/cache/data_p1d_polar_6473.py
To run this script using the DMelt IDE,
copy the above URL link to the menu [File]→[Read script from URL] of the DMelt IDE.
from jhplot import *
from java.awt import Color
p1=P1D("1st data set")
p1.add(1,2)
p1.add(2,3)
p1.add(4,5)
p1.add(10,23)
c1 = WPlot()
c1.visible()
# c1.draw(p1,"PolarScatter")
c1.draw(p1,"Line")
c1.draw(p1,"Bar")
# c1.export("aa.pdf")
You see the box below because you did not login.