I am trying to plot points in a polar grid, but I don't know how to plot multiple points for a single theta value. I have a float type for theta that goes from 0 to 90 degrees split into 90 evenly spaced intervals:
import numpy as np
theta = np.linspace(0,np.pi/2,90)
And then I have a list of various r or radius values generated by the following loop:
i = 100
initialR = 0.32130341
radiusList = []
for y in range(i):
radius = pow(1.02,y)*initialR
radiusList.append (float(radius))
What I want is for a given theta value, say theta = pi/2 for it to plot points at every radius value. Is there a simple way to do this? I am planning on using matplotlib pyplot scatter, but don't know if there is a better option? I feel like it should be straight forward, but I haven't found any plots where the theta and r vary in size.
theta
in the same loop as you buildradiusList
. – Linuxiosscatter
, or will polar suffice? You may want to look at this example for making a scatter plot on a polar coordinate system. – Rory Daulton