11 Pages

BTRY 3010 - Lab 3

Course: BTRY 3010, Fall 2010
School: Cornell
Rating:
 
 
 
 
 

Word Count: 1210

Document Preview

Statistics Biological I Biometry 3010 / Natural Resources 3130 / Statistical Science 2200 Lab 3 Jennifer Chung Section 401 9/26/11 Lab 3 will focus on using R scripts to organize and apply commands. Scripts are files that contain commands that can be executed in part via highlighting or as a whole in much the same way as any computer program would function. For part of this lab we will need the Class2011.txt data,...

Register Now

Unformatted Document Excerpt

Coursehero >> New York >> Cornell >> BTRY 3010

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
Statistics Biological I Biometry 3010 / Natural Resources 3130 / Statistical Science 2200 Lab 3 Jennifer Chung Section 401 9/26/11 Lab 3 will focus on using R scripts to organize and apply commands. Scripts are files that contain commands that can be executed in part via highlighting or as a whole in much the same way as any computer program would function. For part of this lab we will need the Class2011.txt data, so read in this file so that it is in the R environment. class = read.table("Class2011.txt",header=T,sep=",") names(Class) 1. (5 points) To create a script file in Windows to to File/New Script; on the Mac go to New Documents. A blank script file should appear. Copy and paste the following commands into the Script Program Window: stem(class$head) mean(class$head) sd(class$head) hist(class$head) Now highlight just the first line in the Script Window, and if you are using Windows version of R click on Ctrl+R; in Mac Cmd+Return. You should see the command and the solution (i.e. the stem plot or the mean head size) show up in the R Console. Try this with the other commands. (Another approach is to just place the active cursor at the end of the line and do Ctrl+R or Cmd+Return to run the line.) In order to run all the commands at once, we typically highlight the whole thing and click on Ctrl+R (Cmd Return on the Mac). Copy and paste the output solutions into the box below. Make a histogram of the data, but without the mis-measured head sizes (if there are any). To do this, do something like ClassHead = Class$Head[Class$Head > ??] # What should ?? be? hist(ClassHead) Make the plot relatively small to save space and paper. Calculate the mean plus or minus 2 standard deviations for this data. Indicate where these are relative to the data in the histogram by placing a mark on or below the figure where the two points occur. Approximately what percentage of the data lies between these marks? class = read.table("C:\\Users\\B30A\\Desktop\\Class2011.txt",header=T,sep=",") > names(class) [1] "head" "foot" "sex" "class" > stem(class$head) The decimal point is at the | 51 | 0 52 | 00 53 | 00 54 | 000000 55 | 00000000000 56 | 00000000000000000000000000 57 | 000000000000000000 58 | 00000000000000000000000 59 | 000000000000000 60 | 0000000000000 61 | 000 62 | 000 63 | 64 | 65 | 0 66 | 67 | 68 | 0 > mean(class$head) [1] 57.384 > sd(class$head) [1] 2.428938 > hist(class$head) Histogram of class$head Frequency 0 50 10 20 30 40 55 60 class$head 65 Histogram of classhead Frequency 0 5 10 15 20 25 52 54 56 classhead 58 60 62 classhead = class$head[class$head < 63] > hist(classhead) mean(class$head)+(2*sd(class$head)) [1] 62.24188 > mean(class$head)-(2*sd(class$head)) [1] 52.52612 Approximately 95% of the data lies between these marks. Note that this script can be saved for future reference by using the File/Save command. This typically saves the file with a .R postscript, but you may have to add that yourself, so check on that. 2. (5 points) Create a script file to generate a key for identifying elements of a point plot, namely plot character type (pch), color (col), and character size (cex). Copy and paste the following code into a script file and execute using the run arrow button. What does the type="n" do? Eliminate it and see. plot(seq(20),seq(20),type='n') for(i in seq(20)) points(i,i,pch=i,col=i,cex=i/2) plot(seq(20),seq(20),type='n') > for(i in seq(20)) points(i,i,pch=i,col=i,cex=i/2) seq(20) 5 10 15 20 5 10 seq(20) 15 20 plot(seq(20),seq(20)) > for(i in seq(20)) points(i,i,pch=i,col=i,cex=i/2) seq(20) 5 10 15 20 5 10 seq(20) 15 20 3. (5 points) Add to the existing script file commands that will generate a key for identifying of elements a line plot, namely location of a horizontal line (h), color (col), and line width (lwd). Copy and paste the following code into the existing script file and execute using the run arrow button. plot(seq(20),seq(20),type='n') for(i in seq(20)) abline(h=i,col=i,lwd=i/2) plot(seq(20),seq(20),type='n') > for(i in seq(20)) abline(h=i,col=i,lwd=i/2) seq(20) 5 10 15 20 5 10 seq(20) 15 20 Save the script containing the commands for creating these two keys in a file in your local directory called Key.R. This may be useful to have in the future when you are making figures for future assignments or in your own research. 4. (5 points) Generate probability distributions using the R functions Binomial (dbinom) and Poisson (dpois). For the parameters n and p this gives us the probabilities of getting the values 0 through 50 when the mean value is n*p=10 for each distribution. If you have time, try varying the parameters n and p a bit to see what alternate distributions you can produce. What parameter is usually used to represent the mean of the Poisson distribution? How closely does the Poisson approximate the binomial? n = 50 p = 0.2 x = seq(0,n,by=1) y.binom = dbinom(x,n,p) y.pois = dpois(x,n*p) plot( x, y.binom) lines(x, y.pois, col=2) n = 50 > p = 0.2 > x = seq(0,n,by=1) > y.binom = dbinom(x,n,p) > y.pois = dpois(x,n*p) > > plot( x, y.binom) > lines(x, y.pois, col=2) y.binom 0.00 0 0.02 0.04 0.06 0.08 0.10 0.12 0.14 10 20 x 30 40 50 The poisson distribution approximates the binomial distribution fairly closely, with only a few exceptions around the highest values from when x is between 9 and 13. Lambda is used to represent the mean of the Poisson distribution. 5. (5 points) Generate 1000 new "random" values using the binomial and Poisson probability distribution functions and the parameters n and p. This is stochastic simulation. Apply a histogram to each data set generated and compare the results. How do the binomial and Poisson distributions compare for this set of parameter values? How do they compare to the plot of the theoretical values you made above. Make a table comparing the empirical mean and variance from each of your stochastic simulations with the theoretical mean and variance based on the parameters n and p for each distribution. (Make this a 2 x 4 table, mean and variance for the rows, theoretical and empirical of the binomial and Poisson for the columns.) How do the results compare? How do the variances compare between the binomial and Poisson? n = 50 p = 0.2 r.binom = rbinom(1000,size=n,prob=p) r.pois = rpois(1000,lambda=n*p) # This part will make the xscale the same r.breaks = hist(c(r.binom,r.pois),plot=F)$breaks par(mfrow=c(2,1)) hist(r.binom,breaks=r.breaks) hist(r.pois,breaks=r.breaks) par(mfrow=c(1,1)) n = 50 > p = 0.2 > > r.binom = rbinom(1000,size=n,prob=p) > r.pois = rpois(1000,lambda=n*p) > r.breaks = hist(c(r.binom,r.pois),plot=F)$breaks > par(mfrow=c(2,1)) > hist(r.binom,breaks=r.breaks) hist(r.pois,breaks=r.breaks) Histogram of r.binom 250 Frequency 0 50 150 5 10 r.binom 15 20 Histogram of r.pois 250 Frequency 0 50 150 5 10 r.pois 15 20 The binomial and poisson distributions are almost identical, with a few differences in the frequency of values greater than 14. However, they are both fairly symmetric and unimodal. Compared to the theoretical plot above, the histograms have the same frequencies, even with a greater n value. Save the commands for Questions 4 and 5 into a script labeled BinomPois.R. Doing so will allow you to access it easier later. Make sure you spend some time trying to understand what the scripts are doing. Make substitutions for the values in the scripts, and add or eliminate commands to get a better feel for what is going on.
Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Cornell - BTRY - 3010
Biological Statistics I Biometry 3010 / Natural Resources 3130 / Statistical Science 2200 Lab 4 Jennifer Chung Section 401 10/03/11 In today's lab we shall examine the average length of brown trout from samples taken from two streams in the Catskills (rea
Cornell - HADM - 387
Christine Oh##C#h#r#i#s#t#i#n#e# #O#h#M[# #dM[#
Cornell - HADM - 387
9/2/09 EOC prevents litigation State agency has different names. You can't just file a court. You need to go to the EOC in the city first. State agency: state gets paid for every case. Label each case - A: so important that they become plaintiff. Take cas
Cornell - HADM - 387
Christine Oh##C#h#r#i#s#t#i#n#e# #O#h#M[# #dM[#
Cornell - HADM - 387
9/7/2009 Burden of production vs. burden of persuasion? If you miss a class, then call him. No need to email him. He'll teach you via phone. School: 607-255-1711 Home: 277-8333 Cell: 351-6298Burdine gives you false positive Employers are found guilty of
Cornell - HADM - 387
No class Monday but review at night. ADA- 1992- 25 or more employees 1994- 15 or more. Government contractors interesting how many businesses. 1973 rehabilitation act. Emancipation act for people that had disabilities. Cynical- ada, have this act implying
Cornell - HADM - 387
TORTS What is a tort? o A civil wrong (as opposed to a crime) o Private action for damages o No criminal liabilityNEGLIGENCEElements (you need all 4) Duty an obligation running from defendant to plaintiff to exercise reasonable care Breach defendant wa
Cornell - HADM - 387
1. How Franchises are Created:Franchise agreement Blankenship v. Dialist- Corporation sold a franchise illegally. - Is the franchisee entitled to the return of the full amount paid for the franchise? Plus attorney fees? YES! NOTES: P's alleged franchise
Cornell - HADM - 387
385 prelim 2 notes PARTNERSHIP-5 elements, agreements no necessary, Partnership at will=no documents necessary 1-2 or more legal persons 2-voluntary associating 3-to carry on business for some purpose look at time involved &amp; more than a 1 time thing 4-as
Cornell - HADM - 387
385 Outline for FinalI. Copyrights: Give protection to original works of authorship fixed in any taxable (TANGIBLE?) medium of expression. a. Rights given by copyrights i. Right to reproduce ii. Right to distribute copies iii. Right to prepare derivative
Cornell - HADM - 387
Types of Deeds Warranty deeds 1. seller owns property 2. seller is free of undisclosed encumbrances 3. seller will warrant and defend title against all claims regardless of time of occurrence ( ie liens that affect title) Bargain &amp; sale deeds 1. seller ow
Cornell - HADM - 387
387 Prelim I Review SheetIRAC method: Issue, Rule of law, Application, Conclusion PL = Plaintiff DF = Defendant EE = Employee ER = Employer Underline all case names Put a box by every employment factorGENERAL NOTES:BFOQNever applies to rac/color o cus
Cornell - HADM - 387
HA-385 FINAL EXAM Notes May 13, 2002 Trademark Definition of Trademarks: word, name, symbol and/or device used to identify or distinguish goods Facts about Trademarks: - Trademarks can exist as long as you use them - If you abandon it, someone else can ta
Cornell - HADM - 387
Contract Law A. Mutual Assent -Metting of the minds. -both parties must know what they are getting in the contract. Objective reasonable person test. B. Offer -Offeror is making an offer, offeree is accepting the offer -Requirements: -the offer must indic
Cornell - HADM - 387
I. CORPORATIONS: An artificial person created under the statutes of a state or nation, organized for the purpose set out in the application for corporate existence. A corporation is a separate legal entity. II. ADVANTAGES: a. Insulation from personal liab
Cornell - HADM - 387
PARTNERSHIPS I: ELEMENTS/REQUIREMENTS: 1. 2 or more legal persons (e.g Kevin and Brenda) 2. Association (voluntary) 3. Carry on business for some business purpose (not a one time deal n.b look at the time required to complete the deal) 4. As co-owners (sh
Cornell - HADM - 387
I. CORPORATIONS: An artificial person created under the statutes of a state or nation, organized for the purpose set out in the application for corporate existence. A corporation is a separate legal entity. II. ADVANTAGES: a. Insulation from personal liab
Cornell - HADM - 387
HA 387 BUSINESS &amp; HOSPITALITY LAW PROF. SHERWYN DISCRIMINATIONWhen writing a brief: 1) FACTS look at the facts that we care about 2) ISSUE why is someone spending the time on this? Get the issue out of the case 3) HOLD what did the court say? Who wins? P
Cornell - HADM - 387
HA 385 Prelim #2 Notes 4/11/02 I. Partnership elements (Definition: 2 or more people that start a business) A. 2 or more people, real or legal (corporations like IBM, etc.) B. Association (voluntary) C. Carry on a business for some purpose D. As co-owners
Cornell - HADM - 387
HA 385 Review Copyright and Trademark are only 2 forms of Ip that accrue or attach automatically No papers need be filed or submitted Trademark rights : common law As soon as you used it in commerce And It is distinctive from all other things Trade Secret
Cornell - HADM - 387
1 HA 387 Contracts &amp; Unions/Collective Bargaining Exam Review Sheet Contracts 3 Requirements All 3 need to be met for K to be valid: 1. Offer Objective Test must make an Objective Manifestation that will allow someone to accept. &quot;I offer to sell my house
Cornell - HADM - 387
HA 387 Final Exam Review Contracts: Legally enforceable agreement (K) Benefit of: makes businesses more predictable 3 requirement: 1. mutual assent a. meeting of the minds b. both parties must know that they are getting in the contract c. objective reason
Cornell - HADM - 387
HA 387 review session day one Burden of proof: 3 major parties, either plaintiff or defendant must produce evidence. 1) preponderance of evidence: football field, prove beyond 50% that it happened 2) Clear and convincing: 75% 3) Beyond reasonable doubt: 9
Cornell - HADM - 387
HA 387 Slacker Review Rules for Title VII Claims Statute of Limitation If the state has an agency that deals with discrimination claims, statute of limitations begins of last day of last incident statute 300 days. If NO AGENCY statute of limitation only 1
Cornell - HADM - 387
HA 387 Notes April 5, 2005 Costom Case and Adams Case: CASE 1 -women comes into the hotel and makes a phone call and gets hurt -person was meeting a friend and was going to have dinner at hotel INVITEE in this instance CASE 2 -guy stops at bar to make pho
Cornell - HADM - 387
How to Write a Good Law School ExamI R A CSSUEULENALYSISONCLUSIONLAST THREE OFTEN END UP BEING MERGED IN WRITING (1) Issue Spot a. This is what you have been doing throughout the semester as you read the cases b. Which facts raise which issue? (2) S
Cornell - HADM - 387
HA 387 Final Exam NotesContracts and UnionsLaw Review: Contracts &amp; UnionsList of Topics Contracts (K) Contracts need 4 Things 1. Offer 2. Acceptance 3. Consideration 4. &quot;Meeting of the Minds&quot; Defenses 1. Intoxication 2. Minor 3. Insanity 4. Mistake a.
Cornell - HADM - 387
PARTNERSHIPS I: ELEMENTS/REQUIREMENTS: 1. 2 or more people, real or legal (Kevin &amp; Brenda or Brenda &amp; IBM) 2. Association (voluntary) 3. Carry on business for some business purpose (not a one time deal n.b look at the time required to complete the deal) 4
Cornell - HADM - 387
HA 487 Prelim 1 Review Future Interests: How do you own or possess land? 1. Life Estate - Ex. &quot;to Kubbs for life&quot; when Kubbs dies the land reverts back to grantor 2. Fee Simple Absolute - Full bundle of rights. - Can freely sell (alienable) Defeasible Fee
Georgia Tech - ECE - 2025
GEORGIA INSTITUTE OF TECHNOLOGYSCHOOL of ELECTRICAL and COMPUTER ENGINEERINGECE 2025 Spring 2012 Problem Set #1Assigned: 9-Jan-12 Due Date: Week of 16-Jan-12 Reading: In SP First: App. A on Complex Numbers, pp. 430451; and Ch. 2 on Sinusoids, pp. 843.
Georgia Tech - ECE - 2025
GEORGIA INSTITUTE OF TECHNOLOGYSCHOOL of ELECTRICAL and COMPUTER ENGINEERINGECE 2025 Spring 2012 Problem Set #2Assigned: 16-Jan-12 Due Date: Week of 23-Jan-12 Reading: In SP First: App. A on Complex Numbers, pp. 427441; App. B on MATLAB, pp. 443454; an
Cornell - HADM - 387
Requirements of a Contract Legally enforceable agreement. Makes business dealings more predictable. If it is a gift, no contract. It is a duty to read all contracts. 1) Offer: Clear intent And Definite Terms. Objective manifestation of intention: validity
Georgia Tech - ECE - 2025
GEORGIA INSTITUTE OF TECHNOLOGYSCHOOL of ELECTRICAL and COMPUTER ENGINEERINGECE 2025 Spring 2012 Problem Set #3Assigned: 23-Jan-12 Due Date: Week of 30-Jan-12 Reading: In SP First: App. A on Complex Numbers,; and Ch. 2.52.6 on Complex Exponentials and
Georgia Tech - ECE - 2025
GEORGIA INSTITUTE OF TECHNOLOGYSCHOOL of ELECTRICAL and COMPUTER ENGINEERINGECE 2025 Spring 2012 Problem Set #4Assigned: 30-Jan-12 Due Date: Week of 6-Feb-12 Reading: In SP First: Ch. 3.13.3 and Ch.3.73.8 on Spectrum, Periodic Waveforms and Time-Freque
Georgia Tech - ECE - 2025
GEORGIA INSTITUTE OF TECHNOLOGYSCHOOL of ELECTRICAL and COMPUTER ENGINEERINGECE 2025 Spring 2012 Problem Set #5Assigned: 6-Feb-12 Due Date: Week of 13-Feb-12 Reading: In SP First: Ch. 3.43.6 on Fourier Series and Spectrum., and Ch. 4.14.2 on Sampling a
Georgia Tech - ECE - 2025
Introduction to Signal ProcessingECE2025LECTURE #1Spring 2012 What is a signal? A signal is a characterization of information represented as a function of time or space, a sequence of symbols, or simply a hand gesture.Intro to Signal ProcessingScho
Georgia Tech - ECE - 2025
INFORMATIONECE2025 Spring 2012 MATLAB issues: ask your TA for helpLECTURE #2 LABS start NEXT week; Lab #1 will be posted today Lab location is Klaus-2440 No in-lab verification this time ONLY; read instructions carefully Login for ECE Lab computers:
Georgia Tech - ECE - 2025
INFORMATIONECE2025LECTURE #3Fall 2012 MATLAB issues: ask your TA for help LABS From Lab 2 on, attend correct assigned section (in Klaus-2440) Login for ECE Lab computers: Use your Gatech password and AD for &quot;Domain&quot;Phase &amp; TimeShift, Complex Expone
Georgia Tech - ECE - 2025
tsquare InfoECE2025LECTURE #4Spring 2012 Check the Forums &amp; Announcements daily SP First URL:http:/collaboration.ece.gatech.edu/spfirstPhasor Addition Theorem School of Electrical &amp; Computer Engineering Georgia Institute of TechnologyUsername = gt
Georgia Tech - ECE - 2025
General Info about QuizECE2025Lecture #5Spring 2012Spectral RepresentationSchool of Electrical &amp; Computer Engineering Georgia Institute of TechnologyJanuary 27, 2012 Quiz #1 on Feb-06-2012 at lecture time in the same lecture hall Closed-book test;
Georgia Tech - ECE - 2025
General InformationECE2025 Spring 2012 t-square: OFFICIAL ANNOUNCEMENTS LECTURE #6 Old Quizzes &amp; Problems are part of the huge database on the SP-First CDROM website (linked on t-square)Periodic Signals, Harmonics &amp; Time Varying FrequencySchool of El
Georgia Tech - ECE - 2025
General InfoECE2025 Spring 2012 Quiz #1 on 6-Feb LECTURE #7 Coverage: up to Lecture #6 Calculators OK, One 8.5&quot; X 11&quot; page of handwritten notes More Problems (w/ solutions) are on the SP-First CDROM web site No make-up test Review session tonight at 6p
Georgia Tech - ECE - 2025
READING ASSIGNMENTSECE2025 Spring 2012LECTURE #8 This Lecture: Fourier Series in Ch 3, Sects 3-4, 3-5 &amp; 3-6 Notation: ak for Fourier SeriesFourier Series &amp; SpectrumSchool of Electrical &amp; Computer Engineering Georgia Institute of Technology Other R
Georgia Tech - ECE - 2025
ECE2025 Introduction to Signal ProcessingLab Report 4Name of the Student: e-mail: Lab Section: Recitation Instructor: Submitted to:John Smith j.smith@gatech.edu LXX Tony Yezzi Volkan CEVHER1. IntroductionWrite what the lab is about. It may include th
Georgia Tech - ECE - 2025
ECE2025 Introduction to Signal ProcessingLab Report 4Name of the Student: e-mail: Lab Section: Recitation Instructor: Submitted to:John Smith j.smith@gatech.edu LXX Tony Yezzi Volkan CEVHER1. IntroductionWrite what the lab is about. It may include th
Georgia Tech - ECE - 2025
George P. BurdellHW #0 ECE-2025Section L33 Rec: Prof. JonesLecture: 11 AM31-Feb-2002HW Grader: S. Smith
Georgia Tech - ECE - 2025
George P. BurdellHW #0 ECE-2025Section L33 Rec: Prof. JonesLecture: 11 AM31-Feb-2002HW Grader: S. Smith
Georgia Tech - ECE - 2025
Georgia Tech - ECE - 2025
Georgia Tech - ECE - 2025
Georgia Tech - ECE - 2025
GEORGIA INSTITUTE OF TECHNOLOGYSCHOOL of ELECTRICAL and COMPUTER ENGINEERINGECE 2025 Spring 2012 Lab #1: Introduction to MATLABDate: 17 19 Jan. 2012 Special Note: This is the first lab of the semester and will take place during the week of January 16-2
Georgia Tech - ECE - 2025
GEORGIA INSTITUTE OF TECHNOLOGYSCHOOL of ELECTRICAL and COMPUTER ENGINEERINGECE 2025 Spring 2012 Lab #2: Introduction to Complex ExponentialsDate: 2326 January 2012 Pre-Lab: You should read the Pre-Lab section of the lab and do all the exercises in the
Georgia Tech - ECE - 2025
GEORGIA INSTITUTE OF TECHNOLOGYSCHOOL of ELECTRICAL and COMPUTER ENGINEERINGECE 2025 Spring 2012 Lab #3: Synthesis of Sinusoidal Signals-Music Synthesis Date: 30 Jan. 2 Feb. 2012Pre-Lab: You should read the Pre-Lab section of the lab and do all the exe
Georgia Tech - ECE - 2025
GEORGIA INSTITUTE OF TECHNOLOGYSCHOOL of ELECTRICAL and COMPUTER ENGINEERINGECE 2025 Spring 2012 Lab #4: AM and FM Sinusoidal Signals Date: 6-9 February 2012Pre-Lab: You should read the Pre-Lab section of the lab and do all the exercises in the Pre-Lab
Georgia Tech - ECE - 2025
Georgia Tech - ECE - 2025
ECE2025 Spring 2012 Staff InformationA. Faculty Francesco Fedele B.H. Juang C.H. Lee Xiaoli Ma Jennifer Michaels Gordon Stuber L02, L04 Lecture L09, L11 L05, L07 L01, L03 L06, L08 TSRB 415, (use email) Centergy 5173, 4-6618 Centergy 5180, 4-7468 Centergy
Georgia Tech - ECE - 2025
GEORGIA INSTITUTE OF TECHNOLOGYSCHOOL of ELECTRICAL &amp; COMPUTER ENGINEERINGFINAL EXAMDATE: 6-Dec-04 COURSE: ECE-2025NAME:LAST, FIRSTGT #(e.g. gtg123a)Recitation Section: Circle the date &amp; time when your Recitation Section meets (not Lab):L02:Thurs
Georgia Tech - ECE - 2025
GEORGIA INSTITUTE OF TECHNOLOGYSCHOOL of ELECTRICAL &amp; COMPUTER ENGINEERINGFINAL EXAMDATE: 6-Dec-04 COURSE: ECE-2025NAME:LAST, FIRSTGT #(e.g. gtg123a)Recitation Section: Circle the date &amp; time when your Recitation Section meets (not Lab):L02:Thurs
Georgia Tech - ECE - 2025
GEORGIA INSTITUTE OF TECHNOLOGYSCHOOL of ELECTRICAL &amp; COMPUTER ENGINEERINGFINAL EXAMDATE: 30-Apr-04 COURSE: ECE-2025NAME:LAST, FIRSTGT #:Recitation Section: Circle the date &amp; time when your Recitation Section meets (not Lab):L03:Tues-Noon (Ji) L05
Georgia Tech - ECE - 2025
GEORGIA INSTITUTE OF TECHNOLOGYSCHOOL of ELECTRICAL &amp; COMPUTER ENGINEERINGFINAL EXAMDATE: 2-May-05 COURSE: ECE-2025NAME:LAST, FIRSTGT #:(ex: gtz125a)Recitation Section: Circle the date &amp; time when your Recitation Section meets (not Lab):L05:Tues-
Georgia Tech - ECE - 2025
GEORGIA INSTITUTE OF TECHNOLOGYSCHOOL of ELECTRICAL &amp; COMPUTER ENGINEERINGFINAL EXAMDATE: 6-Dec-04 COURSE: ECE-2025NAME:LAST, FIRSTGT #(e.g. gtg123a)Recitation Section: Circle the date &amp; time when your Recitation Section meets (not Lab):L02:Thurs