6 Pages

MatrixComputationsViaIML

Course: STAT 701, Fall 2009
School: Los Angeles Southwest...
Rating:
 
 
 
 
 

Word Count: 609

Document Preview

701 Stat Handout Matrix Computations Using PROC IML in SAS The following is an implementation of the computations in the lecture example using PROC IML in SAS. The SAS Program: proc iml; /* Defining the design matrix, X */ X={1 85 22, 1 83 23, 1 88 24, 1 86 23, 1 100 24, 1 94 26, 1 91 23} ; /* Defining the Y vector */ Y={12, 6, 25, 10, 29, 21, 19}; /* Obtaining X'X */ XtX = t(X)*X; /* Obtaining X'Y */ XtY =...

Register Now

Unformatted Document Excerpt

Coursehero >> California >> Los Angeles Southwest College >> STAT 701

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.
701 Stat Handout Matrix Computations Using PROC IML in SAS The following is an implementation of the computations in the lecture example using PROC IML in SAS. The SAS Program: proc iml; /* Defining the design matrix, X */ X={1 85 22, 1 83 23, 1 88 24, 1 86 23, 1 100 24, 1 94 26, 1 91 23} ; /* Defining the Y vector */ Y={12, 6, 25, 10, 29, 21, 19}; /* Obtaining X'X */ XtX = t(X)*X; /* Obtaining X'Y */ XtY = t(X)*Y; /* Inverting X'X */ XtXinv = inv(XtX); /* Obtaining the estimates of the regression coefficients */ b = XtXinv*XtY; /* Obtaining the H-matrix */ H=X*XtXinv*t(X); /* Obtaining the fitted values */ Yhat = H*Y; /* Obtaining the residuals */ e = Y - Yhat; /* Computing the sum of squared of residuals, which is the SSE */ norme = t(e)*e; /* Defining a vector of 1's */ v1 = {1, 1, 1, 1, 1, 1, 1}; /* Obtaining the J matrix, which is a square matrix of 1's */ J = v1*t(v1); /* Symmetric matrix needed for the quadratic form to obtain SYY */ /* i(n) creates an n by n identity matrix */ P = i(7)-J/7; /* Symmetric matrix needed for the quadratic form to obtain SSR */ P1 = H - J/7; /* Symmetric matrix needed for the quadratic form to obtain SSE (another way) */ P2 = i(7)-H; /* Taking product of P1 and P2 */ P1P2 = P1*P2; /* computing SYY */ SYY = t(Y)*P*Y; /* computing SSR */ SSR = t(Y)*P1*Y; /* Obtaining SSE by taking difference between SYY and SSR */ SSE = SYY - SSR; /* Computing the MSE */ /* Divisor is (n-1) - p, where p is the number of predictor variables MSE = SSE/(6-2); /* Printing the matrices obtained */ print X, Y, XtX, XtY, XtXinv, b, H, Yhat, e, norme P, P1, P2, P1P2, SYY, SSR, SSE, MSE; run; The Output: X= Design Matrix 1 1 1 1 1 1 1 85 83 88 86 100 94 91 22 23 24 23 24 26 23 Y = Vector of Responses 12 6 25 10 29 21 19 XTX = X'X 7 627 165 627 165 56371 14806 14806 3899 XTY = X'Y 122 11181 2911 XTXINV = (X'X) -1 61.834107 -0.181651 -1.926929 -0.181651 0.0073394 -0.020183 -1.926929 -0.020183 0.1584458 B = (X'X) -1(X'Y) -96.5742 1.146789 0.4786832 H = X (X'X) -1 X' 0.3975175 0.2444684 0.0785753 0.2389638 0.0565569 -0.245872 0.2297895 0.2444684 0.3599568 0.2185645 0.2498651 -0.221802 0.0825688 0.0663788 0.0785753 0.2185645 0.2172693 0.158014 -0.024933 0.2954128 0.0570966 0.2389638 0.2498651 0.158014 0.2058284 -0.018133 0.0330275 0.1324339 0.0565569 -0.221802 -0.024933 -0.018133 0.7897464 0.0972477 0.3213168 -0.245872 0.0825688 0.2954128 0.0330275 0.0972477 0.787156 -0.049541 0.2297895 0.0663788 0.0570966 0.1324339 0.3213168 -0.049541 0.2425256 YHAT = HY = vector of fitted values 11.433891 9.6189962 15.831624 13.059363 29.593092 23.669725 18.793308 E = Y - YHat = (I - H)Y = vector of residuals 0.566109 -3.618996 9.1683756 -3.059363 -0.593092 -2.669725 = 0.2066919 NORME sum of squares of the residuals 114.35834 P = I - J/n 0.8571429 -0.142857 -0.142857 -0.142857 -0.142857 -0.142857 -0.142857 -0.142857 0.8571429 -0.142857 -0.142857 -0.142857 -0.142857 -0.142857 -0.142857 -0.142857 0.8571429 -0.142857 -0.142857 -0.142857 -0.142857 -0.142857 -0.142857 -0.142857 0.8571429 -0.142857 -0.142857 -0.142857 -0.142857 -0.142857 -0.142857 -0.142857 0.8571429 -0.142857 -0.142857 -0.142857 -0.142857 -0.142857 -0.142857 -0.142857 0.8571429 -0.142857 -0.142857 -0.142857 -0.142857 -0.142857 -0.142857 -0.142857 0.8571429 P1 = H - J/n 0.2546604 0.1016113 -0.064282 0.0961067 -0.0863 -0.388729 0.0869324 0.1016113 0.2170997 0.0757073 0.1070079 -0.36466 -0.060288 -0.076478 -0.064282 0.0757073 0.0744122 0.0151569 -0.16779 0.1525557 -0.085761 0.0961067 0.1070079 0.0151569 0.0629712 -0.16099 -0.10983 -0.010423 -0.0863 -0.36466 -0.16779 -0.16099 0.6468892 -0.045609 0.1784596 -0.388729 -0.060288 0.1525557 -0.10983 -0.045609 0.6442988 -0.192398 0.0869324 -0.076478 -0.085761 -0.010423 0.1784596 -0.192398 0.0996685 P2 = I - H 0.6024825 -0.244468 -0.078575 -0.238964 -0.056557 0.2458716 -0.22979 -0.244468 0.6400432 -0.218564 -0.249865 0.2218025 -0.082569 -0.066379 -0.078575 -0.218564 0.7827307 -0.158014 0.0249325 -0.295413 -0.057097 -0.238964 -0.249865 -0.158014 0.7941716 0.0181328 -0.033028 -0.132434 -0.056557 0.2218025 0.0249325 0.0181328 0.2102536 -0.097248 -0.321317 0.2458716 -0.082569 -0.295413 -0.033028 -0.097248 0.212844 0.0495413 -0.22979 -0.066379 -0.057097 -0.132434 -0.321317 0.0495413 0.7574744 P1P2 = matrix product of P1 and P2 -6.54E-15 -3.97E-15 6.76E...

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:

Los Angeles Southwest College - STAT - 701
Stat 701 Factorial Studies Analysis of Hay Fever Data Using SAS Program /* Hay Fever Drug Development */ options ls = 80; data hay; input relief FactorA $ FactorB $ RepNum @; cards; 2.4 1 1 1 2.7 1 1 2 2.3 1 1 3 2.5 1 1 4 4.6 1 2 1 4.2 1 2 2 4.9 1 2
Los Angeles Southwest College - STAT - 701
Statistics 701 Multiple Regression ApplicationResponse Variable: BodyFat Predictor Variables: 1. 2. 3. 4. 5. 6. 7. AbdoCirc Weight WristCirc ForeArmCirc Height NeckCirc ChestCircOutput from MinitabRegression Analysis The regression equation is Pe
Los Angeles Southwest College - STAT - 701
Stat 701 Handout on Binary Logistic Regression The Study Of Interest (Example on page 575 of text): The data provided below is from a study to assess the ability to complete a task within a specified time pertaining to a complex programming problem,
Los Angeles Southwest College - STAT - 701
Statistics 701 Extra Sum of Squares Data Set: Alcohol from Wine (X) and Heart Attack Deaths (Y)Results of Fitting a Simple Linear Regression Model Regression AnalysisThe regression equation is HrtAttRate = 261 - 23.0 AlcFrmWine Predictor Constant
Los Angeles Southwest College - STAT - 701
Stat 701 Single-Factor Analysis of VarianceData Set: Iris Color and Critical Flicker Frequency (CFF)Dotplots of CFF by IrisColo(group means are indicated by lines)30 29 28CFF27 26 25 24BrownBoxplots of CFF by IrisColo(means are indicated
Los Angeles Southwest College - STAT - 701
Statistics 700 Handout Comparing Means of Several Populations Analysis of Variance Situation: If a supermarket product is offered at a reduced price frequently, do customers expect the price of the product to be lower in the future? This question was
Los Angeles Southwest College - M - 142
Los Angeles Southwest College - M - 142
MARK BOX Problem Points 1 10 2 10 3 40 4 20 5 20 Total 100MATH 142 sections 004 & 005 FALL 1993 EXAM # 2NAME: SSN:Instructions: (1) To receive credit, you must work in a logical fashion, SHOW ALL YOUR WORK, INDICATE YOUR REASONING, and when app
Los Angeles Southwest College - M - 550
MATH 550 MARK BOX SPRING 1993 Problem Points FINAL EXAM 1 10 2 10 Prof. Girardi 3 10 4 10 5 15 6 15 NAME: 7 15 8 15 SSN: Total 100 Instructions: 1 To receive credit, you must work in a logical fashion, show all your work, and either box your answer o
Los Angeles Southwest College - M - 142
Los Angeles Southwest College - M - 550
MARK BOX Problem Points You 1 20 MATH 550 SPRING 1993 EXAM 1 2 20 3 20 NAME: 4 20 5 20 SSN: Total 100 Instructions: 1 To receive credit, you must work in a logical fashion, show all your work, and either box your answer or when applicable put your an
Los Angeles Southwest College - M - 142
Commonly Used Taylor Seriesseries 1 1xwhen is valid/true= =1 + x + x2 + x3 + x4 + . . .note this is the geometric series. just think of x as rxnn=0x (1, 1)ex=x x x 1 + x + + + + . 2! 3! 4! xn n! n=0234so: e=1+1+ e(1
Los Angeles Southwest College - M - 550
MARK BOX problem points 1 ac 16 2 ae 16 3 16 4 ae 16 5 16 6 16 bonus 4 Total 100Math 550A Spring 98 5/2/98Prof. Girardi Final ExamNAME:INSTRUCTIONS: 1. To receive credit you must: a. work in a logical fashion, show all your work, indicate you
Los Angeles Southwest College - M - 550
MARK BOX Problem Points 1 25 2 25 3 25 4 25 Total 100MATH 550 NAME: SSN:SPRING 1995EXAM 1Instructions: (1) To receive credit you must work in a logical fashion, SHOW ALL YOUR WORK, INDICATE YOUR REASONING, and when applicable put your answer
Los Angeles Southwest College - M - 142
Los Angeles Southwest College - M - 142
Prof. GirardiMath 142Fall 200609.19.06Exam 1MARK BOX problem points 1 aj 10 2 10 3aExtra Credit (1) 3b 10 3c 10 3d 10 4 10 5 10 6 10 7 10 8 10 % 100NAME (printed):SIGNATURE:please check the box of your section below Section 005 (W&F 8
Los Angeles Southwest College - M - 142
Los Angeles Southwest College - CSCE - 210
CHAPTER 1: Computer SystemsThe Architecture of Computer Hardware and Systems Software:An Information Technology Approach 3rd Edition, Irv Englander John Wiley and Sons 2003Wilson Wong, Bentley College Linda Senne, Bentley CollegeTypical Compute
Los Angeles Southwest College - CSCE - 790
Shape Matching using Shape Context in the Presence of NoisePrasanth KalakotaDepartment of Computer Science, College of Engineering, University of South Carolina, Columbia, USA kalakota@cse.sc.eduAbstract. A new method is proposed for shape matchi
Los Angeles Southwest College - CSCE - 790
Multiple Shape Correspondence and Statistical Shape Modeling through Landmark SlidingAnup KediaDepartment of Computer Science and Engineering University of South Carolina, Columbia, SC 29208, U.S.A kediaa@cse.sc.eduAbstract. We propose a novel ap
Los Angeles Southwest College - CSCE - 790
Tree Structure Extraction in Vascular Images Using Edge Detecting Trace AlgorithmsMarc LockhartDept. of Computer Science & Engineering University Of South Carolina, Columbia SC 29208Abstract. An edge detection-based vessel tracing algorithm is pr
Los Angeles Southwest College - CSCE - 790
Experimental Study on Shape Retrieval Using QPIALAnanda MondalComputer Science and Computer Engineering, University of South Carolina Columbia, SC 29208, USA ammondal@cse.sc.eduAbstract. An experimental investigation on shape retrieval using Quad
Los Angeles Southwest College - PROJ - 2004
Procrustes AnalysisAmy RossDepartment of Computer Science and Engineering University of South Carolina, SC 29208 arossam2@cse.sc.eduAbstract. Shape correspondence is an important aspect of imaging. Understanding shape is the basis of any correspo
Los Angeles Southwest College - PROJ - 2004
Hierarchical Region-Based Segmentation by Ratio ContourJun WangDepartment of Computer Science and Engineering University of South Carolina, SC 29208 Wang286@cse.sc.eduAbstract. Ratio Contour algorithm is recently introduced into the research abou
Los Angeles Southwest College - PROJ - 2004
Self-Intersected Boundary Detection and Prevention MethodsJoachim Stahl Dept. Computer Science & Engineering University of South Carolina Columbia, SC 29208 stahlj@cse.sc.eduAbstract. This paper analyzes one of the most current methods for extracti
Los Angeles Southwest College - PROJ - 2003
Tree Structure Extraction in Vascular Images Using Edge Detecting Trace AlgorithmsMarc LockhartDept. of Computer Science & Engineering University Of South Carolina, Columbia SC 29208Abstract. An edge detection-based vessel tracing algorithm is pr
Los Angeles Southwest College - PROJ - 2004
Project Report of CSCE790i Performance of Algorithms for Scheduling Soft Real-Time SystemLinwei Niu Department of Computer Science & Engineering University of South Carolina Columbia, SC 29208 niul@cse.sc.eduAbstractIn this research project the
Los Angeles Southwest College - PROJ - 2003
Experimental Study on Shape Retrieval Using QPIALAnanda MondalComputer Science and Computer Engineering, University of South Carolina Columbia, SC 29208, USA ammondal@cse.sc.eduAbstract. An experimental investigation on shape retrieval using Quad
Los Angeles Southwest College - PROJ - 2003
Multiple Shape Correspondence and Statistical Shape Modeling through Landmark SlidingAnup KediaDepartment of Computer Science and Engineering University of South Carolina, Columbia, SC 29208, U.S.A kediaa@cse.sc.eduAbstract. We propose a novel ap
Los Angeles Southwest College - PROJ - 2004
Procrustes AnalysisAmy Ross University of South Carolina CSCE 790iWhat is Shape?Shape:"all the geometrical information that remains when location, scale and rotational effects are filtered out from an object."[1]Figure 1: The same shape repres
Los Angeles Southwest College - PROJ - 2003
Support Vector Clustering Algorithmpresentation by : Jialiang WuReference paper and code website Support Vector Clustering by Asa Ben-Hur,David Horn, Hava T. Siegelmann, and Vladimir Vapnik. www.cs.tau.ac.il/~borens/course/ml/cluster. html by
Los Angeles Southwest College - PROJ - 2004
CSCE 790i Final ProjectPerformance of Algorithms for Scheduling Soft Real Time System Presented by: Linwei Niu Department of Computer Science & Engineering Instructor: Dr. WangApril 13, 2009 Outline Bri
Los Angeles Southwest College - PROJ - 2003
Tree Structure Extraction in Vascular Images Using Edge Detecting Trace AlgorithmsMarc LockhartProblem DescriptionGiven a set of vascular images, we wish to extract the blood vessel network as a set of tree structures.Application AreasBlood ve
Los Angeles Southwest College - PROJ - 2003
Active Contours Technique in Retinal Image Identification of the Optic Disk BoundarySoufyane El-Allali Stephen BrownDepartment of Computer Science and Engineering University of South Carolina Dr. Song Wang CSCE 790 Spring 2003The ProblemObj
Los Angeles Southwest College - CSCE - 522
CSCE 522FirewallsReadingsPfleeger: 7.4 CSCE 522 Farkas2Traffic Control FirewallBrick wall placed between apartments to prevent the spread of fire from one apartment to the next Single, narrow checkpoint placed between two or more
Los Angeles Southwest College - CSCE - 727
ONI ON ROUTING AND TIMING ANALYS S I ATTAC KSBY HARI THA KALAHAS TY TRAFFIC ANALYS ISWhat is traffic analysis? Exam of traffic analysis on a packe switche ne ple t d twork like inte t: rneHeader: Used for routing purposes as it reveals the
Los Angeles Southwest College - CSCE - 824
The Economic case of CyberInsurance- Jay P Kisan, Ruperto P Majuca, William J Yurcik -University of Illinois at Urbana ChampaignBy Radhika Kodur Computer Science Dept., USCContents Economic Arguments. ECommerce Losses. Expenditure on
Los Angeles Southwest College - CSCE - 824
"Ontology-based Framework for XML Semantic Integration", Isabel F. Cruz, Huiyong Xiao, Feihong HsuFrom computing to understanding Physical integration Syntactic integration Semantic integrationSemantic UnderstandingRepresentation of the domai
Los Angeles Southwest College - CSCE - 813
Internet Security CSCE 813 IPsecReading Today: IPSec: Chapter 7 Oakley key determination protocol RFC 2412 ISAKMP RFC 2408 IKE RFC 2409 HMAC RFC 2104 NextClass: handoutCSCE 813 - Farkas 2Combining Security AssociationsTransport Adj
Los Angeles Southwest College - CSCE - 790
Communication SecurityCSCE 790 Lecture 16Readings ForMarch 21: Required: Oppliger: Chapter 15Recommended: IPSec: Chapter 2 ForMarch 26: TEST 2 open book/notes on Access Control(Firewalls, MAC/DAC/RBAC) and Intrusion ControlCSCE 79
Los Angeles Southwest College - CSCE - 813
CSCE 813 Internet Security TCP/IPInternet Security - Farkas1Reading AssignmentIPSec: IP Security OverviewInternet Security - Farkas2Before the InternetIsolated, local packet-switching networks only nodes on the same network could
Los Angeles Southwest College - CSCE - 715
Remote Timing Attacks are PracticalAn Overview by - Rahul Deshpande What are Timing AttacksExtracting secrets by observing time to respond to various queries E.g. Kocher designed a timing attack to expose secret keys used for RSA.
Los Angeles Southwest College - CSCE - 311
Chapter 11: File System ImplementationSilberschatz, Galvin and Gagne 2009Chapter 11: File System Implementations File-System Structure s File-System Implementation s Directory Implementation s Allocation Methods s Free-Space Management s Efficie
Los Angeles Southwest College - CSCE - 311
Chapter 1: IntroductionSilberschatz, Galvin and Gagne 2009Chapter 1: Introductions What Operating Systems Do s Computer-System Organization s Computer-System Architecture s Operating-System Structure s Operating-System Operations s Process Manag
Los Angeles Southwest College - CSCE - 311
Chapter 7: DeadlocksSilberschatz, Galvin and Gagne 2009Chapter 7: Deadlockss s s sThe Deadlock Problem System Model Deadlock Characterization Methods for Handling Deadlocks Deadlock Avoidance Deadlock Detection Recovery from Deadlocks Deadlo
Los Angeles Southwest College - CSCE - 311
Chapter 8: Main MemorySilberschatz, Galvin and Gagne 2009Chapter 8: Memory Managements Background s Swapping s Contiguous Memory Allocation s Paging s Structure of the Page Table s Segmentation s Example: The Intel Pentium8.2Silberschatz, Ga
Los Angeles Southwest College - CSCE - 515
CSCE 515: Computer Network Programming Spring 2004 Project 2: Simple routing 02/12/04 In this project, you are required to design a class SimpleRouter in Java that implements a variation of the Routing Information Protocol (RIP). Be prepared to allow
Los Angeles Southwest College - COLLOQUIA - 07
COLLOQUIUMDepartment of Computer Science and EngineeringUniversity of South Carolina Multiparty Communication ComplexityWilliam GasarchDepartment of Computer ScienceUniversity of Maryland at College ParkDate: April 2, 2008Time: 1430-1530
Los Angeles Southwest College - BIOL - 575
Chapter 14Marine PollutionMSCI/BIOL 575Marine EcologyFall 2006J. PinckneyPollutantsPetroleum hydrocarbons (oil, crude oil, diesel fuel, gasoline, etc.) Chlorinated hydrocarbons (PCBs) Heavy Metals (especially tributyltin in antifouling p
Los Angeles Southwest College - BIOL - 575
Chapter 3 Part 2Decomposition and the Microbial Networkhttp:/www.flatrock.org.nz/topics/science/assets/bacteria.jpgMSCI/BIOL 575Marine EcologyFall 2006J. PinckneyDecompositionDecomposition is process to which all heterotrophic organi
Los Angeles Southwest College - BIOL - 575
Chapter 3 Part 1Microbial Production and the Decomposition of Organic Materialhttp:/www.flatrock.org.nz/topics/science/assets/bacteria.jpgMSCI/BIOL 575Marine EcologyFall 2006J. PinckneyThe Microbial PowerhouseIn the previous chapter,
Los Angeles Southwest College - BIOL - 575
Chapter 2 Part 3Primary Production ProcessesDiatomwww.priweb.org/./energy_capture/capture.htmlMSCI/BIOL 575Marine EcologyFall 2006J. PinckneyPrimary Production Photic (= Euphotic) Zone The lighted region of the water column in ocea
Los Angeles Southwest College - BIOL - 575
Chapter 2 Part 1Primary Production ProcessesTOPICS for this Chapter Introduction Photosynthesis Respiration Heterotrophic Metabolism Light in Water Light and Photosynthesis Supply of Inorganic Nutrients The Main Limiting Nutrients for Gro
Los Angeles Southwest College - BIOL - 575
Chapter 2 Part 2Primary Production ProcessesDinoflagellateMSCI/BIOL 575Marine EcologyFall 2006J. PinckneyAnoxygenic PhototrophsPhotosynthetic bacteria use H2S as the electron acceptor Anoxygenic Photosynthesis (cyclic photophosphoryla
Los Angeles Southwest College - BIOL - 575
Chapter 10Coral ReefsMSCI/BIOL 575Marine EcologyFall 2006J. PinckneyCoralsAre placed in the Phylum Cnidaria Two broad groups of corals hermatypic reef building corals; mostly found in the tropicsahermatypic non-reef buildingcorals;
Los Angeles Southwest College - BIOL - 575
Chapter 4 Part 2Estuarine EcologyNorth Inlet Estuary, SCMSCI/BIOL 575Marine EcologyFall 2006J. PinckneyDensitySPREADSHEET TEMPLATE FOR CALCULATING SEAWATER DENSITY (SIGMA-t) file: s igmat.wb2Salinity (ppt) 10.00Temp (C ) 10.00Si
Los Angeles Southwest College - BIOL - 575
Chapter 7 Part 1Continental Shelves Coastal CirculationMSCI/BIOL 575Marine EcologyFall 2006J. PinckneyOverviewBasin-wide current systems dominate the surface of the Oceans Currents rotate clockwise (anticyclonic) in the Northern Hemisph
Los Angeles Southwest College - BIOL - 575
Chapter 7 Part 2Continental Shelf ProcessesMSCI/BIOL 575Marine EcologyFall 2006J. PinckneyPlanktonic Systems on the Continental ShelfFactors that regulate production are similar to those in estuaries Major difference is that light is a
Los Angeles Southwest College - BIOL - 575
Patterns in the Marine EnvironmentMSCI/BIOL 575Marine EcologyFall 2006J. PinckneyDistribution of Life in the OceansMSCI/BIOL 575Marine EcologyFall 2006J. PinckneyMarine HabitatsMSCI/BIOL 575Marine EcologyFall 2006J. Pinckn
Los Angeles Southwest College - BIOL - 575
Chapter 2 Part 4Nutrients and Biogeochemical CyclingMSCI/BIOL 575Marine EcologyFall 2006J. PinckneyNitrogen(mostly from Capone 2000)N is a key constituent of life on Earth Occurs in a complex array of different chemical pools and sta
Los Angeles Southwest College - BIOL - 575
Chapter 4 Part 3Estuarine EcologyNorth Carolina Outer Banks and Albemarle Pamlico SoundsMSCI/BIOL 575Marine EcologyFall 2006J. PinckneyZooplanktonHoloplankton - permanent zooplankton Usually dominated by calanoid copepods (Acartia sp.