day1/cheatsheet2.tex
changeset 330 46533051b9d3
parent 314 c9f05808e1c4
child 341 7ae88b9da553
equal deleted inserted replaced
329:0a6ab1d81491 330:46533051b9d3
    27 \end{center}
    27 \end{center}
    28 
    28 
    29 \section{Plotting Points with Lists}
    29 \section{Plotting Points with Lists}
    30 
    30 
    31 \begin{lstlisting}
    31 \begin{lstlisting}
    32 In []: x = [0, 1, 2, 3]
    32 In []: x = [0, 1, 2, 3] # Creating a list
    33 In []: y = [7, 11, 15, 19]
    33 In []: y = [7, 11, 15, 19]
    34 In []: plot(x, y)
    34 In []: plot(x, y)
    35 In []: clf()
    35 In []: clf()
    36 In []: plot(x, y, 'o')  # Plotting Circles
    36 In []: plot(x, y, 'o')  # Plotting Circles
    37 \end{lstlisting}
    37 \end{lstlisting}