CuLineP201127: This dataset is a compliatio of various ocean properties...

Description Format Author(s) Examples

Description

This dataset is a compliatio of various ocean properties collected during the Aug 2011 Line P cruise in the Northeast Pacific.

Format

A dataframe with 100 observations over 18 variables.

Depth

ranges from 0-2000m

Station

factor with 5 levels

Lat

latitude in degrees North

Lon

longitude in degrees East

press

pressure, int value in units of dbar

depth

depth in units of meters

depth_n

nominal depth in units of meters

dCu_L

dissolved copper concentration in nmol L-1

dCu_kg

dissolved copper concentration in nmol kg-1

dens

density in units of kg m-3

dens_pot

potential density - sigma, unitless

pot_temp

potnetial temperature

spicy

spiciness, unitless

sal

salinity, PSU

temp

temperature in celcius

oxy

dissolved oxygen in nmol kg-1

phosph

dissolved phosphate in umol kg-1

nitrate

dissolved nitrate in umol kg-1

silicate

silisic acid in umol kg-1

Author(s)

Anna Posacka

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
str(CuLineP201127)
head(CuLineP201127)
summary(CuLineP201127)
table(CuLineP201127$dCu_kg)
plot(dCu_kg ~ depth, CuLineP201127)
plot(dCu_kg ~ depth, CuLineP201127)

if (require("dplyr")) {
 CuLineP201127%>%
 filter(depth<25) %>%
 group_by(stn) %>%
 summarise(surf_conc = mean(dCu_kg))
 }

AnnaMagdalena/Ocgrtools documentation built on May 5, 2019, 6:03 a.m.