I want my mathplotlib figure to have another set of axis/lines. Currently I do as follows:
plt.plot([0,eigenVectors[0][0]],[0,eigenVectors[1][0]],color='k',marker='o')
plt.plot([0,eigenVectors[0][1]],[0,eigenVectors[1][1]],color='k',marker='o')
where eigenVector is a 2d matrix and I am just trying to draw lines passing through the eigenvectors and the origin. However, as it is evident, I am drawing two line segments not lines. I wish to draw two lines passing through origin and the eigenvectors. Is there a way to say that draw a line (not a line segment) passing through two points?
My current plot looks like this:
PS: I am trying to implement PCA.