summaryrefslogtreecommitdiff
path: root/day1
diff options
context:
space:
mode:
authorPuneeth Chaganti2009-10-23 15:52:29 +0530
committerPuneeth Chaganti2009-10-23 15:52:29 +0530
commit1330ad449baa0ab7371625b8615e4cdb16d73c17 (patch)
tree556f68ca76c93d6998770c0bfb93efef464b0601 /day1
parent70f194ca967d5a7f858634cf670120cf24954ce2 (diff)
downloadworkshops-more-scipy-1330ad449baa0ab7371625b8615e4cdb16d73c17.tar.gz
workshops-more-scipy-1330ad449baa0ab7371625b8615e4cdb16d73c17.tar.bz2
workshops-more-scipy-1330ad449baa0ab7371625b8615e4cdb16d73c17.zip
Added plotting of points, additional attributes of plots.
Diffstat (limited to 'day1')
-rw-r--r--day1/session2.tex13
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]