Difference between revisions of "Biostatistics 615/815 Fall 2011"

From Genome Analysis Wiki
Jump to navigationJump to search
Line 64: Line 64:
 
** (If you can't decompress the files above properly, use this alternative link by [http://dl.dropbox.com/u/1850834/biostat615-homework02-datasets.tar.gz CLICKING HERE] )
 
** (If you can't decompress the files above properly, use this alternative link by [http://dl.dropbox.com/u/1850834/biostat615-homework02-datasets.tar.gz CLICKING HERE] )
 
* Problem Set 3 -- Due on Tuesday November 1st, 2011 [[Media:Biostat615-homework03.pdf | (PDF)]]
 
* Problem Set 3 -- Due on Tuesday November 1st, 2011 [[Media:Biostat615-homework03.pdf | (PDF)]]
** Example output data for problem 3-2 (input is the second column)
+
** Example output data for problem 3-2 (input is the second column) (NOTE : UPDATED on Oct 25 11:03AM)
 
  TIME TOSS Pr(F) Pr(HB) Pr(TB) MLSTATE
 
  TIME TOSS Pr(F) Pr(HB) Pr(TB) MLSTATE
 
  1 T 0.8901 0.0308 0.0791 FAIR
 
  1 T 0.8901 0.0308 0.0791 FAIR

Revision as of 11:03, 25 October 2011

Objective

In Fall 2011, Biostatistics 615/815 aims for providing students with a practical understanding of computational aspects in implementing statistical methods. Although C++ language will be used throughout the course, using Java programming language for homework and project will be acceptable.

Target Audience

Students in Biostatistics 615 should be comfortable with simple algebra and basic statistics including probability distribution, linear model, and hypothesis testing. Previous experience in programming is not required, but those who do not have previous programming experience should expect to spend additional time studying and learning to be familiar with a programming language during the coursework. Most students registering for the course are Masters or Doctoral students in Biostatistics, Statistics, Bioinformatics or Human Genetics.

Students in Biostatistics 815 should be familiar with programming languages so that they can complete the class project tackling an advanced statistical problem during the semester. Project will be carried out in teams of 2. The details of the possible projects will be announced soon.

Textbook

  • Recommended Textbook : Cormen, Leiserson, Rivest, and Stein, "Introduction to Algorithms", Third Edition, The MIT Press, 2009 [Official Book Web Site]
  • Optional Textbook : Press, Teukolsky, Vetterling, Flannery, "Numerical Recipes", 3rd Edition, Cambridge University Press, 2007 [Official Book Web Site]

Class Schedule

Classes are scheduled for Tuesday and Thursdays, 8:30 - 10:00 am at SPH II M4332

Topics

The following contents are planned to be covered.

Part I : C++ Basics and Introductory Algorithms

  • Computational Time Complexity
  • Sorting
  • Divide and Conquer Algorithms
  • Searching
  • Key Data Structure
  • Dynamic Programming
  • Hidden Markov Models

Part II : Numerical Methods and Randomized Algorithms

  • Random Numbers
  • Matrix Operations and Least Square Methods
  • Importance Sampling
  • Expectation Maximization
  • Markov-Chain Monte Carlo Methods
  • Simulated Annealing
  • Gibbs Sampling

Class Notes

Problem Sets

  • Problem Set 0 - Running screenshots of helloWorld.cpp and towerOfHanoi.cpp - Due before the submission of Problem Set 1
  • Problem Set 1 -- Due on Tuesday September 27th, 2011 (PDF) (PDF-SOLUTIONS)
  • Problem Set 2 -- Due on Thursday October 6th, 2011 (PDF) (PDF-SOLUTIONS)
  • Problem Set 3 -- Due on Tuesday November 1st, 2011 (PDF)
    • Example output data for problem 3-2 (input is the second column) (NOTE : UPDATED on Oct 25 11:03AM)
TIME	TOSS	Pr(F)	Pr(HB)	Pr(TB)	MLSTATE
1	T	0.8901	0.0308	0.0791	FAIR
2	H	0.9084	0.0741	0.0175	FAIR
3	H	0.9166	0.0682	0.0152	FAIR
4	T	0.9238	0.0165	0.0597	FAIR
5	T	0.9242	0.0165	0.0593	FAIR
6	H	0.9182	0.0683	0.0135	FAIR
7	H	0.9117	0.0746	0.0137	FAIR
8	T	0.9008	0.0392	0.0600	FAIR
9	H	0.8763	0.0692	0.0545	FAIR
10	T	0.8139	0.0318	0.1543	FAIR
11	T	0.7532	0.0680	0.1788	FAIR
12	H	0.5835	0.3935	0.0230	HEAD-BIASED
13	H	0.4680	0.5265	0.0054	HEAD-BIASED
14	H	0.3947	0.6022	0.0031	HEAD-BIASED
15	H	0.3514	0.6460	0.0027	HEAD-BIASED
16	H	0.3305	0.6670	0.0025	HEAD-BIASED
17	H	0.3283	0.6692	0.0025	HEAD-BIASED
18	H	0.3443	0.6527	0.0030	HEAD-BIASED
19	H	0.3812	0.6124	0.0064	HEAD-BIASED
20	H	0.4434	0.5207	0.0359	HEAD-BIASED
21	T	0.5248	0.1730	0.3022	TAIL-BASED
22	T	0.5382	0.1658	0.2960	TAIL-BASED
23	H	0.5073	0.4574	0.0353	HEAD-BIASED
24	H	0.4768	0.5171	0.0061	HEAD-BIASED
25	H	0.4652	0.5320	0.0028	HEAD-BIASED
26	H	0.4739	0.5236	0.0025	HEAD-BIASED
27	H	0.5046	0.4916	0.0037	HEAD-BIASED
28	H	0.5622	0.4244	0.0134	HEAD-BIASED
29	T	0.6503	0.2511	0.0986	HEAD-BIASED
30	H	0.6628	0.2956	0.0417	HEAD-BIASED

Office Hours

  • Friday 9:00AM-10:30PM

Standards of Academic Conduct

The following is an extract from the School of Public Health's Student Code of Conduct [1]:

Student academic misconduct includes behavior involving plagiarism, cheating, fabrication, falsification of records or official documents, intentional misuse of equipment or materials, and aiding and abetting the perpetration of such acts. The preparation of reports, papers, and examinations, assigned on an individual basis, must represent each student’s own effort. Reference sources should be indicated clearly. The use of assistance from other students or aids of any kind during a written examination, except when the use of books or notes has been approved by an instructor, is a violation of the standard of academic conduct.

In the context of this course, any work you hand-in should be your own.

Course History