diff options
-rw-r--r-- | day1/session2.tex | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/day1/session2.tex b/day1/session2.tex index d5d96c7..1a28cd1 100644 --- a/day1/session2.tex +++ b/day1/session2.tex @@ -193,14 +193,23 @@ In []: T = [0.6529, 0.8485, 1.0590, \end{frame} \begin{frame}[fragile] -\frametitle{Plotting Attributes} +\frametitle{Additional Plotting Attributes} \begin{itemize} \item \kwrd{'o'} - Dots + \item \kwrd{'.'} - Smaller Dots \item \kwrd{'-'} - Lines \item \kwrd{'- -'} - Dashed lines \end{itemize} \end{frame} +\begin{frame}[fragile] +\frametitle{Plotting $L$ vs. $T^2$} +\begin{itemize} +\item We must square each of the values in T +\item How to do it? +\item T is a \kwrd{list} and we use a \kwrd{for} loop to iterate over it +\end{itemize} +\end{frame} \section{File Handling} @@ -238,8 +247,6 @@ Out[]: ['KD', 'MCS', 'PC', 'SC', 'SV'] \inctime{5} \end{frame} -\section{Plotting points} - \section{Lists} \begin{frame}[fragile] |