I am trying to take an interesting course offered by Coursera on linear algebra. The course is in Python. I'm familiar with R instead.
It seems like to follow the course I can't assume that plotting is going to be as easy as calling plot().
In particular, there is this command in one of the first lectures:
>>>L = [2 + 2j, 3 + 2j, 1.75 + 1j]
>>>from plotting import plot
>>> plot(L)
which works fine for the instructor, but results in the following error when I try:
>>> from plotting import plot
Traceback (most recent call last):
File "<pyshell#4>", line 1, in <module>
from plotting import plot
ImportError: No module named 'plotting'
I went to the help pages, and it mentions that plotting in Python uses the internet browser, and advising to check which browser is the default. I use Opera (don't ask...), and it seems as though it is one of the recognized browsers.
If it is just a matter of installing the 'plotting' module as the error message clearly spells out, can I ask how this is done?
NOTE: I have circumvented this issue by simply downloading anaconda and then, from the cmd prompt calling IP Notebook typing: > ipython notebook at the prompt. A browsers should open with the jupyter interface; ipython notebook is phenomenal, allowing scientific plotting, markdown and latex in a local webserver interface that is clean and nice. During the session the cmd windows should remain open. Also, to save projects to a folder, the directory should be changed to that folder before starting the session, also using the cmd line. This is what it looks like:

plottingis not a pypi package. Is it something course specific?