starting markov things

This commit is contained in:
2024-10-29 15:38:53 -04:00
parent e8749deb8d
commit 6ad7ce6fdd
6 changed files with 303 additions and 70 deletions

View File

@@ -35,8 +35,7 @@ def csv2Table(inFile):
reader = csv.reader(f)
rows = list(reader)
out = "\\begin{table}[h!]\n\\centering\n"
out += "\\begin{tabular}[t]{|" + " c | p{1.3cm} | c | c | p{6cm} |}\n"
out = "\\begin{longtable}{|" + " c | p{1.3cm} | c | c | p{6cm} |}\n"
out += "\\hline\n"
for row in rows:
@@ -45,7 +44,7 @@ def csv2Table(inFile):
out += " & ".join(row) + " \\\\\n"
out += "\\hline\n"
out += "\\end{tabular}\n\\end{table}\n"
out += "\\end{longtable}\n"
return out
def findIn(arr, target):

View File

@@ -23,4 +23,14 @@ Week,Date,Type,Duration (Hours),Description
8,10/15,Research,3,"Bayes Belief Networks"
8,10/16,Application,2.5,"Bayes visualizations and practice worksheets"
8,10/16,Reporting,2,"Early Bayesian Statistics Report"
8,10/17,Application,2,"Bayes Geometric Visualization"
8,10/17,Application,2,"Bayes Geometric Visualization"
8,10/18,Application,2,"Bayes Belief Network Visualization and reporting"
8,10/18,Advising Meetings,1,"Bayes Report Review"
8,10/18,Reporting,2.5,"Applying meeting feedback"
9,10/22,Research,2,"Dempster-Shafer Theory"
9,10/25,Advising Meetings,0.5,"'are you doing things' check"
9,10/26,Research,1,"First Pass Markov Chains"
10,10/28,Reporting,3,"Finalization, added Standard Error, Dempster-Shafer Theory, Fooled by Randomness"
10,10/29,Reporting,1,"Lindy, Info Gap tie ins"
10,10/29,Research,3,"Markov Chains (brilliant.org, towardsdatascience)"
10,10/29,Reporting,2,"Markov Chain Summary and Visuals"
1 Week Date Type Duration (Hours) Description
23 8 10/15 Research 3 Bayes Belief Networks
24 8 10/16 Application 2.5 Bayes visualizations and practice worksheets
25 8 10/16 Reporting 2 Early Bayesian Statistics Report
26 8 10/17 Application 2 Bayes Geometric Visualization
27 8 10/18 Application 2 Bayes Belief Network Visualization and reporting
28 8 10/18 Advising Meetings 1 Bayes Report Review
29 8 10/18 Reporting 2.5 Applying meeting feedback
30 9 10/22 Research 2 Dempster-Shafer Theory
31 9 10/25 Advising Meetings 0.5 'are you doing things' check
32 9 10/26 Research 1 First Pass Markov Chains
33 10 10/28 Reporting 3 Finalization, added Standard Error, Dempster-Shafer Theory, Fooled by Randomness
34 10 10/29 Reporting 1 Lindy, Info Gap tie ins
35 10 10/29 Research 3 Markov Chains (brilliant.org, towardsdatascience)
36 10 10/29 Reporting 2 Markov Chain Summary and Visuals

Binary file not shown.

View File

@@ -1,5 +1,6 @@
\documentclass[12pt]{article}
\usepackage{blindtext}
\usepackage{longtable}
\usepackage[a4paper, total={6in, 10in}]{geometry}
\nofiles
\hyphenpenalty 1000
@@ -26,9 +27,7 @@
\newpage
% OPEN Timesheet
\begin{table}[h!]
\centering
\begin{tabular}[t]{| c | p{1.3cm} | c | c | p{6cm} |}
\begin{longtable}{| c | p{1.3cm} | c | c | p{6cm} |}
\hline
Week & Date & Type & Duration (Hours) & Description \\
\hline
@@ -82,13 +81,32 @@ Week & Date & Type & Duration (Hours) & Description \\
\hline
8 & 10/17 & Application & 2 & Bayes Geometric Visualization \\
\hline
\end{tabular}
\end{table}
\noindent Hours for Advising Meetings: 6.0\\
Hours for Application: 6.0\\
Hours for Reporting: 16.0\\
Hours for Research: 28.5\\
\textbf{Total Hours: 56.5}\\
8 & 10/18 & Application & 2 & Bayes Belief Network Visualization and reporting \\
\hline
8 & 10/18 & Advising Meetings & 1 & Bayes Report Review \\
\hline
8 & 10/18 & Reporting & 2.5 & Applying meeting feedback \\
\hline
9 & 10/22 & Research & 2 & Dempster-Shafer Theory \\
\hline
9 & 10/25 & Advising Meetings & 0.5 & 'are you doing things' check \\
\hline
9 & 10/26 & Research & 1 & First Pass Markov Chains \\
\hline
10 & 10/28 & Reporting & 3 & Finalization, added Standard Error, Dempster-Shafer Theory, Fooled by Randomness \\
\hline
10 & 10/29 & Reporting & 1 & Lindy, Info Gap tie ins \\
\hline
10 & 10/29 & Research & 3 & Markov Chains (brilliant.org, towardsdatascience) \\
\hline
10 & 10/29 & Reporting & 2 & Markov Chain Summary and Visuals \\
\hline
\end{longtable}
\noindent Hours for Advising Meetings: 7.5\\
Hours for Application: 8.0\\
Hours for Reporting: 24.5\\
Hours for Research: 34.5\\
\textbf{Total Hours: 74.5}\\
% CLOSE Timesheet
\end{document}