# HG changeset patch # User Steve Losh # Date 1695519741 14400 # Node ID 8c1652a33df6fd42be960295d317be184086ac95 # Parent bfbc01c7cf95fd575a6e56fd3f990d598fc67287 Update diff -r bfbc01c7cf95 -r 8c1652a33df6 README.markdown --- a/README.markdown Fri Sep 22 16:43:40 2023 -0400 +++ b/README.markdown Sat Sep 23 21:42:21 2023 -0400 @@ -973,3 +973,42 @@ Breakout panel with current grad students. Lots of stuff, probably not going to write it all down here. +## 2023-09-23 + +Finished HW 4 for BS521. + +Got some random Latex shit to remember for next time. Aligned equations: + + \begin{eqnarray*} + foo &=& bar \\ + meow &=& wow \\ + \end{eqnarray*} + +References to figures: + + (See figure~\ref{fig:g-a}) + + … + + \begin{figure}[H] + \centering + \includegraphics[width=0.65\textwidth]{figures/g-a} + \caption{Graph for exercise 4.1 part a.} + \label{fig:g-a} + \end{figure} + +Units: + + \usepackage{units} + + Drink 500 \unit{ml} of water at lunch. + +And some random R shit to remember for next time: + + dbinom = Binomial PDF + pbinom = Binomial CDF + +Came up with some absolutely cursed code to made shaded normal graphs. +Surprised that's not already a thing. + +