5 Pages

Rlab7

Course: PSY 710, Fall 2009
School: St. Mary MD
Rating:
 
 
 
 
 

Word Count: 1258

Document Preview

PJ PSY710 Lab Bennett, #7 Statistics Lab #7 PSY710 November 12, 2008 Initialize R by entering the following command at the prompt. You must type the command exactly as shown. > source(url("http://psycserv.mcmaster.ca/bennett/psy710/Rlab7/Rlab7_init.R") ) > options(contrasts=c("contr.sum","contr.poly")) 1 ANCOVA on heating data The following...

Register Now

Unformatted Document Excerpt

Coursehero >> Maryland >> St. Mary MD >> PSY 710

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.
PJ PSY710 Lab Bennett, #7 Statistics Lab #7 PSY710 November 12, 2008 Initialize R by entering the following command at the prompt. You must type the command exactly as shown. > source(url("http://psycserv.mcmaster.ca/bennett/psy710/Rlab7/Rlab7_init.R") ) > options(contrasts=c("contr.sum","contr.poly")) 1 ANCOVA on heating data The following passage is copied directly from Rs description of the whiteside data in the MASS package: Mr Derek Whiteside of the UK Building Research Station recorded the weekly gas consumption and average external temperature at his own house in south-east England for two heating seasons, one of 26 weeks before, and one of 30 weeks after cavity-wall insulation was installed. The object of the exercise was to assess the eect of the insulation on gas consumption. I have created a data frame, heating, that contains fake data that matches the design of Whitesides experiment. The variables are Insul, a factor with the levels Before and After; Temp, which contains the weekly average external temperature (C); and Gas, which is the weekly gas consumption in units of 1000 cubic feet. We are going to perform an analysis of covariance (ANCOVA) on these data. The dependent variable is Gas, the independent variable is Insul, and the covariate is Temp. 1.1 1.2 tting linear models to the data graphing the data The analysis of covariance examines the eect of a factor (Insul) after controlling for the linear association between a covariate (Temp) and dependent variable (Gas). So, before we start, I want to see if a linear model is appropriate for these data. I begin by extracting the data from the Before and After conditions. > heating.before <- subset(heating, Insul == "Before") Next, I use aov to compute the best-tting line that relates Gas and Temp in that condition: > lm.before <- lm(Gas ~ 1 + Temp, data = heating.before) Finally, I graph the data points and best-tting line. The linear t to the data appears adequate: there is no obvious evidence of nonlinearities over the range of the covariate. > with(heating.before, plot(Temp, Gas, ylim = c(0, 10), xlim = c(-5, + 25), pch = 21)) > abline(lm.before) > title(main = "Heating Data (Before)") 1 Bennett, PJ PSY710 Lab #7 Heating Data (Before) 10 q 8 q q q 6 Gas q q q qq q q q q 4 q q q q q q q q 2 q q q q q q q q q 0 5 0 5 10 Temp 15 20 25 We can examine the parameters of the linear model with the summary command. summary.lm prints the values of the intercept (5.59) and slope (-0.31) of the tted line, t tests that determine if each parameter diers from zero, and R2 (0.62) indicates the proportion of variance in the dependent variable that is accounted for by the model. > summary(lm.before) Call: lm(formula = Gas ~ 1 + Temp, data = heating.before) Residuals: Min 1Q Median 3Q Max -2.25641 -1.19450 -0.05102 0.76520 3.61773 Coefficients: Estimate Std. Error t value Pr(>|t|) (Intercept) 5.59125 0.40635 13.760 5.53e-14 *** Temp -0.30784 0.04559 -6.752 2.48e-07 *** --Signif. codes: 0 *** 0.001 ** 0.01 * 0.05 . 0.1 1 Residual standard error: 1.441 on 28 degrees of freedom Multiple R-squared: 0.6195, Adjusted R-squared: 0.606 F-statistic: 45.6 on 1 and 28 DF, p-value: 2.479e-07 Task: Extract the data from the After condition, compute the best-tting line, and then graph the data and line. Does the linear model appear to t the data adequately? How do the intercepts and slopes dier between the Before and After conditions? 2 Bennett, PJ PSY710 Lab #7 1.3 calculating the ANCOVA Next, we compute the sum of squares associated with Insul after correcting for the linear association between Temp and Gas: > heating.ancova.1 <- lm(Gas ~ 1 + Temp + Insul, data = heating) > anova(heating.ancova.1) Analysis of Variance Table Response: Gas Df Sum Sq Mean Sq F value Pr(>F) Temp 1 148.691 148.691 96.223 7.578e-14 *** Insul 1 18.218 18.218 11.790 0.001116 ** Residuals 57 88.081 1.545 --Signif. codes: 0 *** 0.001 0.01 ** * 0.05 . 0.1 1 The eect of insulation after controlling for the linear eect of temperature is signicant (F (1, 57) = 11.779, p = .001). 1.4 homogeneity of slopes assumption The previous section used the analysis of covariance to show that the main eect of insulation was signicant after controlling for the linear eect of temperature. However, the linear model used in that analysis did not include an interaction term: it assumed that the interaction was zero. This assumption is equivalent to assuming that the slope of the line relating Gas to temperature had the same slope in the two conditions. We can test the homogeneity of slopes assumption by testing the signicance of the interaction term: > heating.ancova.2 <- lm(Gas ~ 1 + Temp + Insul + Temp:Insul, data = heating) > anova(heating.ancova.2) Analysis of Variance Table Response: Gas Df Sum Sq Mean Sq Temp 1 148.691 148.691 Insul 1 18.218 18.218 Temp:Insul 1 0.003 0.003 Residuals 56 88.078 1.573 --Signif. codes: 0 *** 0.001 F value Pr(>F) 94.5377 1.253e-13 *** 11.5833 0.001236 ** 0.0018 0.966513 ** 0.01 * 0.05 . 0.1 1 The interaction is not signicant (F (1, 56) = 0.0018, p = 0.96), so the homogeneity of slopes assumption appears to be valid for these data. Task: Perform the ANCOVA using the aov command. 1.5 inspecting the residuals ANCOVA assumes that the errors are distributed normally, and that error variance is constant across the range of the covariate. We can test the constant variance assumption by plotting the residuals against the temperature. If the constant variance assumption is true, then the residuals should be scattered about the zero line and the 3 Bennett, PJ PSY710 Lab #7 spread of the scatter should be constant across the covariate. The graph indicates that the magnitude of the residuals is roughly constant across the range of the covariate, so the constant variance assumption appears reasonable. > plot(heating$Temp, residuals(heating.ancova.1)) > abline(h = 0) > title(main = "ancova: residuals vs. covariate") ancova: residuals vs. covariate q 3 q residuals(heating.ancova.1) 2 q q q q q 1 q qq q q q q qq q q q q q q qq q q q q q q q q q q q qq qq q q q q q 0 q q q 1 q q q q q q q q q q q q 2 q 5 0 5 10 heating$Temp 15 20 We can check the normality assumption by using a qq plot to inspect the residuals > qqnorm(residuals(heating.ancova...

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:

ECCD - ELEC - 97251
Problem Set 5 (Posted for Tuesday Oct. 17/06)Find the Thvenin equivalent source for each of the circuits in: (The instructions to use KVL and KCL are only to exercise those techniques; they are not the only way to solve these problems.) 5.1 Use Thve
ECCD - C - 97251
Problem Set 5 (Posted for Tuesday Oct. 17/06)Find the Thvenin equivalent source for each of the circuits in: (The instructions to use KVL and KCL are only to exercise those techniques; they are not the only way to solve these problems.) 5.1 Use Thve
Allan Hancock College - CITS - 1211
THE UNIVERSITY OF WESTERN AUSTRALIAEXAMINATION JUNE 2003 230.123FOUNDATIONS OF COMPUTER SCIENCE 123This paper contains: 12 questions 17 pages Time allowed: Reading time: TWO HOURS TEN MINUTESAll questions carry equal marks Candidates should att
ECCD - ELEC - 97251
ELEC2501 - Problem Set 9 Solution9.1 Given the network below find 0, | V0 (0)| and Q.Solution: Resonance occurs when L = 1 0 = C 1 LC1 = 7071rad / s 20mH *1 F During the resonance:0 =600o 60o I (0 ) = 10 V (0 ) = I (0 ) * Z C = 60o *( = 8
ECCD - C - 97251
ELEC2501 - Problem Set 9 Solution9.1 Given the network below find 0, | V0 (0)| and Q.Solution: Resonance occurs when L = 1 0 = C 1 LC1 = 7071rad / s 20mH *1 F During the resonance:0 =600o 60o I (0 ) = 10 V (0 ) = I (0 ) * Z C = 60o *( = 8
ECCD - ELEC - 97251
ELEC2501 - Problem Set 10Use our step-by-step approach (Irwin pp. 202-204) (do not use diffl eqns) for all of the following: RC Circuits: 10.1t12V 4kO 4kO2kO 2kO 100F vC(t)Step1 : Vc(t) = K1 + K2e Step2 : t = 0 Using voltage divider, Vc(t =
ECCD - C - 97251
ELEC2501 - Problem Set 10Use our step-by-step approach (Irwin pp. 202-204) (do not use diffl eqns) for all of the following: RC Circuits: 10.1t12V 4kO 4kO2kO 2kO 100F vC(t)Step1 : Vc(t) = K1 + K2e Step2 : t = 0 Using voltage divider, Vc(t =
St. Mary MD - PSY - 710
Bennett, PJPSY710Practice Questions Set #2Practice Questions Set #2PSY710 October 30, 2008Please initialize R by entering the following command at the prompt. Remember, you must type the command exactly as shown. &gt; source(url(&quot;http:/psycserv.
ECCD - ELEC - 97251
Problem Set 8 (Posted for Tuesday Nov. 7/06)8.1 Using voltage divider :10OVo = 7 45 o .ZL Z R + ZC + Z L745V-j5Oj15 = 7 45 . 10 - 5 + 15oj15OV0= 7 45 o .1590 o 10 + j10 1590o( * Note : According to the convention in this course,
ECCD - C - 97251
Problem Set 8 (Posted for Tuesday Nov. 7/06)8.1 Using voltage divider :10OVo = 7 45 o .ZL Z R + ZC + Z L745V-j5Oj15 = 7 45 . 10 - 5 + 15oj15OV0= 7 45 o .1590 o 10 + j10 1590o( * Note : According to the convention in this course,
St. Mary MD - PSY - 710
Bennett, PJPSY710Chapter 11Notes on Maxwell &amp; DelaneyPSY710 Fall 200811single-factor within-subject designsThe ideas of blocking and the analysis of covariance were discussed in chapter 9. By explicitly incorporating individual dierences
ECCD - C - 97251
ELEC 2501 Course Topic OutlineTopics are in the order in which they were presented in 2007. References given are for Irwin Ed.7 -Signals: Definitions of voltage and current Mathematical/graphical representations of signals Period pg. 259 Frequency
St. Mary MD - PSY - 710
Bennett, PJPSYCH 710Chapter 3Notes on Maxwell &amp; DelaneyPSYCH 710 Fall 200833.1Chapter 3Linear ModelsWhenever we do an analysis of variance we are determining which one of several linear models best ts our data. Linear models have the f
ECCD - C - 97251
ECCD - ELEC - 97251
Solution Set 1 Q1. f(t) = 0 t 2 -(t-4) 1/2(t-4) 0 Q2. t&lt;0 ms 0&lt;t&lt;1 ms 1&lt;t&lt;2 ms 2&lt;t&lt;4 ms 4&lt;t&lt;6 ms t&gt;6 msa) Average = -7.5 (mA), RMS = 34.9 mA b) Average = 0 (Volt), RMS = V (Volt)c) Average = 0 ; RMS = 0.577 d) Average = 10-10e -10 ; RMS = 10(5-5
ECCD - C - 97251
Solution Set 1 Q1. f(t) = 0 t 2 -(t-4) 1/2(t-4) 0 Q2. t&lt;0 ms 0&lt;t&lt;1 ms 1&lt;t&lt;2 ms 2&lt;t&lt;4 ms 4&lt;t&lt;6 ms t&gt;6 msa) Average = -7.5 (mA), RMS = 34.9 mA b) Average = 0 (Volt), RMS = V (Volt)c) Average = 0 ; RMS = 0.577 d) Average = 10-10e -10 ; RMS = 10(5-5
St. Mary MD - PSY - 710
Bennett, PJPSY710Lab #7Statistics Lab #7PSY710 November 12, 2008Initialize R by entering the following command at the prompt. You must type the command exactly as shown. &gt; source(url(&quot;http:/psycserv.mcmaster.ca/bennett/psy710/Rlab7/Rlab7_ini
ECCD - ELEC - 97251
Please Use Solution of Question3.3 Provided on Next Page3.5
ECCD - ELEC - 97251
Solution Set 4 (Fall 2007)Solution Set 4 Rev03k.docSolution Set 4 Rev03k.doc4.5IT + 2kO VS I2 1 +I1 V1 4kO 6kO 4kO 1kO 3kOReq(N.B. The &quot;O&quot;s in the above diagram are actually s, for some reason Word will no longer show them correctly in
ECCD - C - 97251
Problem Set 9 (Posted for Tuesday Nov. 14/06)Resonance: 9.1 Given the network below find 0, V0 ( 0 ) and Q.9.2 Repeat Problem 9.1 if the value of R is changed to 1 . 9.3 Determine the resonant frequency, Q, BW, and the average power dissipated by
ECCD - ELEC - 97251
ELEC2501: Assignment 77.1 Determine the phase angles by which v1 (t ) leads i1 (t ) and v1 (t ) leads i2 (t ) , where : v1 (t ) = 6 sin(377t + 25o )V i1 (t ) = 0.04 cos(377t 10 o ) A i2 (t ) = 0.2 sin(377t 75o ) A Solution: i1 (t ) = 0.04 cos(377
ECCD - ELEC - 97251
Problem Set 8 (Posted for Tuesday Nov. 7/06)8.1 Find the frequency-domain voltage V0, as shown in the circuit below. -j5 10745Vj15V08.2 Find the frequency-domain voltage V0, as shown in the circuit below.1260 A8.3 Find the frequency-doma
ECCD - C - 97251
Problem Set 8 (Posted for Tuesday Nov. 7/06)8.1 Find the frequency-domain voltage V0, as shown in the circuit below. -j5 10745Vj15V08.2 Find the frequency-domain voltage V0, as shown in the circuit below.1260 A8.3 Find the frequency-doma
ECCD - ELEC - 97251
Problem Set 6 (Posted for Tuesday Oct. 24/06)6.1 An uncharged 10F capacitor is charged by the current i (t ) = 10 cos(10 3 t ) mA; take i(t&lt;0)=0 and v(t&lt;0)=0. a) Find the expression for the voltage across the capacitor. b) Sketch the voltage across
ECCD - C - 97251
Problem Set 6 (Posted for Tuesday Oct. 24/06)6.1 An uncharged 10F capacitor is charged by the current i (t ) = 10 cos(10 3 t ) mA; take i(t&lt;0)=0 and v(t&lt;0)=0. a) Find the expression for the voltage across the capacitor. b) Sketch the voltage across
ECCD - ELEC - 97251
Problem Set 3 (Fall 2006)Important: Signs! 3.1 Find V14 in the network below.3.2 Find V20 and V64 in the circuit below.3.3 Repeat 2.12 and find the power in each: i) 6 resistor ii) 12 resistor iii) 9 volt source a) when the source is +9v DC b) w
ECCD - C - 97251
Problem Set 3 (Fall 2006)Important: Signs! 3.1 Find V14 in the network below.3.2 Find V20 and V64 in the circuit below.3.3 Repeat 2.12 and find the power in each: i) 6 resistor ii) 12 resistor iii) 9 volt source a) when the source is +9v DC b) w
ECCD - ELEC - 97251
Problem Set 1 (Fall 2006)Problem Set 1 Rev00.doc
ECCD - ELEC - 97251
ECCD - ELEC - 97251
Problem Set 2 (Fall 2006)2.1 Determine the amount of power absorbed or supplied by the element below if: a) V1=6V, I=3A; and b) V1=-6V, I=-3A2.2 Repeat 2.1 for: a) V1=-8V, I=5A; and b) V1=8V, I=-5A 2.3 Determine the missing quantity in the circuit
ECCD - C - 97251
Problem Set 2 (Fall 2006)2.1 Determine the amount of power absorbed or supplied by the element below if: a) V1=6V, I=3A; and b) V1=-6V, I=-3A2.2 Repeat 2.1 for: a) V1=-8V, I=5A; and b) V1=8V, I=-5A 2.3 Determine the missing quantity in the circuit
ECCD - ELEC - 97251
Problem Set 9 (Posted for Tuesday Nov. 14/06)Resonance: 9.1 Given the network below find 0, V0 ( 0 ) and Q.9.2 Repeat Problem 9.1 if the value of R is changed to 1. 9.3 Determine the resonant frequency, Q, BW, and the average power dissipated by t
ECCD - C - 97251
Problem Set 9 (Posted for Tuesday Nov. 14/06)Resonance: 9.1 Given the network below find 0, V0 ( 0 ) and Q.9.2 Repeat Problem 9.1 if the value of R is changed to 1. 9.3 Determine the resonant frequency, Q, BW, and the average power dissipated by t
ECCD - ELEC - 97251
Problem Set 10 (Posted for Tuesday Nov. 21/06)Use our step-by-step approach (Irwin pp. 202-204) (do not use diff'l eq'ns) for all of the following: RC Circuits: 10.1 Find vC (t ) for t&gt;0 in the circuit below and plot the response including the time
ECCD - C - 97251
Problem Set 10 (Posted for Tuesday Nov. 21/06)Use our step-by-step approach (Irwin pp. 202-204) (do not use diff'l eq'ns) for all of the following: RC Circuits: 10.1 Find vC (t ) for t&gt;0 in the circuit below and plot the response including the time
ECCD - ELEC - 4708
Sample Midterm Exam MidDay, MidMonth, MidYear ELEC4708: Advanced Digital Electronics Department of Electronics, Carleton UniversityInstructor: Maitham Shams Booklets: None Aids Allowed: Calculator Last Name: First Name: ID: Exam Duration: 1 hour Num
ECCD - ELEC - 3500
Assignment 1, Winter 2005, Due February 7 ELEC-3500: Digital ElectronicsMaitham ShamsDepartment of Electronics, Carleton UniversityName: ID: Q1 /30 Q2 /20 Q3 /50 Total /100Formula Cox = ox toxVT = VT 0 + ( | 2F + VSB | | 2F |) k W ID (sat)
ECCD - FYSM - 1607
FYSM1607B Cognitive ScienceWeek 3b: Cognitive PsychologySeptember 19, 2008IntentionalityLast classWe nished our discussion of the intentional stance, thermostats, martian super-scientists, and free will Weve also now nished our general intr
Middle Tennessee State University - REC - 1517
CalendarTV ScheduleMiddle Tennessee Record Cable Channel 9 Monday-Sunday, 5 p.m. NewsChannel5+ Saturday, 1 p.m.March 26-April 8Tuesday, March 27 MT Baseball vs. Austin Peay 6 p.m., Reese Smith Field For information, visit www.goblueraiders.com
Middle Tennessee State University - REC - 1501
CalendarTV ScheduleMiddle Tennessee Record Cable Channel 9 Monday-Sunday-5 p.m. NewsChannel 5+ Saturdays-1:30 p.m.July 8July 3-July 16Every Monday nightMTSU Guys &amp; Dolls Swing Dance Club Free dance lessons 6-7 p.m., open dancing 7-9 p.m. Da
ECCD - FYSM - 1607
FYSM1607B Cognitive ScienceWeek 9b: Philosophy: Free Will &amp; DeterminismOctober 31, 2008Free willLast classConclusion of mind/body problem: varieties of materialism.Free willTodays classFreedom of will: what is it? who has it? is it ev
ECCD - FYSM - 1607
What is Cognitive Science?(according to some people)The following are paragraphs taken from the webpages of the Cognitive Science programs of several universities. I make no claim to exhaustiveness, and have selected these simply on the bases of (i
ECCD - FYSM - 1607
FYSM1607B Cognitive ScienceWeek 10a: Test 1 Review (part I)November 5, 2008ReviewLast classConclusion of philosophy: free will.ReviewTodays classInitial discussion of assignment 2 Review of material for Test 1ReviewAssignment 2Re
ECCD - FYSM - 1607
FYSM1607B Cognitive ScienceWeek 12a: Basics of NeuroscienceNovember 19, 2008NeuroTodays classAdministrative stuff Start of neuroscience: Basic concepts (anatomy, functioning, measurement. . . )NeuroAdministrative stuffAssignment 2: Fi
ECCD - FYSM - 1607
FYSM1607BJanuary 16, 2008 LinguisticsThe Role of Linguistics in CogSci What is linguistics about? What do linguists study? What do they contribute to CogSci?2 2Linguistics Properties of Language Language Development Is Language Learne
ECCD - FYSM - 1607
FYSM1607B Cognitive ScienceWeek 9a: Philosophy of Mind (cont.): MaterialismOctober 27, 2008 of mindLast classIntro to philosophy of mind: the mind/body(brain) problem criterion of the mental monism vs. dualism varieties of dualism of mind
ECCD - FYSM - 1607
FYSM1607B Cognitive ScienceWeek 11a: NeuroscienceNovember 14, 2008NeuroTodays classStart of neuroscience. Basic concepts (anatomy, functioning, measurement. . . )NeuroWhy bother?Q: What does neuroscience contribute to Cognitive Scienc
ECCD - FYSM - 1607
FYSM1607B Cognitive ScienceWeek 5b: Still More Cognitive PsychologyOctober 8, 2008AttentionLast classInformation processing stages (end of pattern rec. reading) Discussion &amp; distribution of assignment 1AttentionTodays classTheories of
ECCD - FYSM - 1607
FYSM1607B - Cognitive Science:Thinking and KnowingFred Mailhot Institute of Cognitive Science Carleton University 2008-2009 January 8, 2009Class: Room: Instructor: Office: Phone: E-mail: Office Hours: Wed &amp; Fri, 8:35-9:55 Southam 501 Fred Mailhot
ECCD - FYSM - 1607
FYSM1607B Cognitive ScienceWeek 7b: Cognitive psych: Problem solving models and intro to philosophy of mindOctober 16, 2008ModelsLast classProblem solving: Overview Problem typesModelsTodays classProblem Solving Models Beginning of Ph
ECCD - FYSM - 1607
FYSM1607B Cognitive ScienceWeek 6a: Evolutionary PsychologyOctober 8, 2008AttentionLast classTheories of attention More discussion of assignment 1AttentionHistory I1950s: Classical ethology (Konrad Lorenz &amp; Nikolass Tinbergen)1 (strong
ECCD - FYSM - 1607
FYSM1607B Cognitive ScienceWeek 1: What is Cognitive Science?September 12, 2008What is cogsciLast classIntroduction and overview. . . Cognitive science is the interdisciplinary study of the mind. Mind. . .What is a mind? What kind of chara
ECCD - FYSM - 1607
FYSM1607B Cognitive ScienceTest 2 ReviewJanuary 28, 2009ReviewFree Will &amp; DeterminismPositions on free will: Incompatibilism: free will and a deterministic universe cannot both be true(Hard/Causal) determinism: the universe is deterministi
ECCD - FYSM - 1607
FYSM1607B Cognitive ScienceWeek 10b: Test 1 Review (part II)November 7, 2008ReviewLast classIntro to assignment 2 Review for Test 1ReviewTodays classMore review of material for Test 1ReviewEvolutionary PsychClassical ethology (Lo
ECCD - FYSM - 1607
Notes from October 22nd assignment reviewFred Mailhot October 27, 2008In light of the fact that some students are being made privy to the contents of this document only now, Im pushing back the deadline for the assignment to this Fridays class, i.
ECCD - FYSM - 1607
FYSM 1607B: Assignment 1Research SummaryDue Date (First Draft): October 15, 2008 (due in class) Due Date (Final Draft): October 29, 2008 (due in class)Research Summary (2 pages)The ability to write a clear, concise summary is a skill that is imp
Allan Hancock College - CITS - 1211
CITS1211 Foundations of Computer Science Assignment: parsing chemical equations Submission deadline: 10am, Friday 30 May 2008 This is the programming assignment for CITS1211 Foundations of Computer Science. This assignment is worth 15% of your overal
ECCD - PSYC - 2200
PSYC2200 Biological Foundations of BehaviourPSYC2200 Biological Foundations of BehaviourTopic 2: Cells of the Nervous System Discovery of Neurons and Glia The Neural membrane and cytoskeleton Organelles of the neural cell body Axons and dendrites
Allan Hancock College - CITS - 1211
Two Dozen Short Lessons in Haskella participatory textbook on functional programmingbyRex PageSchool of Computer Science University of OklahomaCopyright 1995, 1996, 1997 by Rex Page Permission to copy and use this document for educational or
ECCD - PSYC - 2200
PSYC2200 Biological Foundations of BehaviourPurposive Movement Requires ControlOpen and Closed Loop Control SystemsTopic 7:Sensorimotor System and the Control of Movement(brain model of ideal performance)Textbook readings: Chapter 7Feedbac
ECCD - PSYC - 2200
PSYC2200 Biological Foundations of BehaviourTEXTBOOK: Carlson, N.R. Foundations of Physiological Psychology (7th ed.) Allyn and Bacon, Toronto, 2008.Lecture NotesDr. Brian Tansley Departments of Psychology and Systems and Computer EngineeringP