first day done

This commit is contained in:
Fabian Sinz
2014-10-15 11:24:18 +02:00
parent 1e7f07a2d2
commit 7e4d79a2c5
38 changed files with 1589 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
all:
for number in 001 002 003 004 005 006 007 007 009 010 011 012 013 014 015 016 017 ; do \
echo $$number ; \
sed "s/000/$$number/g" day1.tex > tmp.tex; \
pdflatex tmp.tex; \
mv tmp.pdf day1_$$number.pdf; \
cp ../data/example$$number.csv ./ ;\
rm tmp.* ; \
zip example$$number.zip example$$number.csv day1_$$number.pdf ; \
rm example$$number.csv ;\
rm day1_$$number.pdf ; \
done
clean:
rm *.zip
rm -rf auto

72
statistics/assignments/day1.tex Executable file
View File

@@ -0,0 +1,72 @@
\documentclass[addpoints,10pt]{exam}
\usepackage{url}
\usepackage{color}
\usepackage{hyperref}
\pagestyle{headandfoot}
\runningheadrule
\firstpageheadrule
\firstpageheader{Scientific Computing}{afternoon assignment day 01}{10/20/2014}
%\runningheader{Homework 01}{Page \thepage\ of \numpages}{23. October 2014}
\firstpagefooter{}{}{}
\runningfooter{}{}{}
\pointsinmargin
\bracketedpoints
%\printanswers
\shadedsolutions
\begin{document}
%%%%%%%%%%%%%%%%%%%%% Submission instructions %%%%%%%%%%%%%%%%%%%%%%%%%
\sffamily
%%%%%%%%%%%%%% Questions %%%%%%%%%%%%%%%%%%%%%%%%%
\begin{questions}
\question To publish scientific results, you will usually need to
use statistical methods. Some journals provide you with a brief
description of how they expect you to apply statistical methods. One
example can be found in the author guidelines of the journal
Nature.
Assume you collected the following dataset. You can download it from
Ilias as {\tt example000.csv}. Here is the description of the dataset:
\begin{quotation}
\tt
\input{../examples/example000.tex}
\end{quotation}
\begin{parts}
\part Download the dataset and write a script that loads it into
matlab.
\part Think about the type of your data (I might ask you that
tomorrow).
\part Produce a plot that displays the data in an appropriate
way. Make sure to respect all elements of good plotting we
discussed today.
\part Download the statistical checklist from nature. Produce {\bf
one} slide that contains the plot and a concise summary of your
data which respects the requirements made by nature (assume you
are producing a figure legend for the figure in nature). It is
good style to avoid expressions like ``the plot shows'' or
similar.
\part Upload your code, the data, and the slide as a zip to
Ilias. Deadline is 19h00. Structure the zip such that you can
present you program in front of the class. Several students will
be asked to present their slide and their code tomorrow morning.
\end{parts}
\end{questions}
\end{document}