Learn R Programming

rLakeAnalyzer (version 1.11.4.1)

schmidt.plot: Creates a time series plot of Schmidt's stability

Description

Generates a time series of Schmidt's stability where each value represents water column stability for each time step of data. See schmidt.stability for more details and reference.

Usage

schmidt.plot(wtr, bth)

Arguments

wtr

Data frame of water temperature loaded with load.ts

bth

A data frame containing hypsometric data. Loaded using load.bathy

References

See schmidt.stability

See Also

schmidt.stability

Examples

Run this code
# NOT RUN {
	# Get system data file paths 
  wtr.path <- system.file('extdata', 'Sparkling.wtr', package="rLakeAnalyzer")
	bth.path <- system.file('extdata', 'Sparkling.bth', package="rLakeAnalyzer")

	# Load data for example lake, Sparkilng Lake, Wisconsin.
	wtr = load.ts(wtr.path)
	bth = load.bathy(bth.path)
	
	
# }
# NOT RUN {
  # Generate default plot
  schmidt.plot(wtr,bth)
  
# }

Run the code above in your browser using DataLab