functions.panels.plot: Plot utilities

Description Usage Arguments Details Note Author(s) References Examples

Description

Uses layout to plot several graphs on a page and plot on two vertical axis

Usage

1
2
panels(wd, ht, rows, cols, pty, int = "r")
plot2yaxis(x, x0 = FALSE, y0 = FALSE)

Arguments

wd

Width

ht

Height

rows

number of rows

cols

number of columns

pty

type

int

axis intersection

x

Variable x for horizontal axis and variables y1, y2 for vertical axes

x0

Logical to select axis limit

y0

Logical to select axis limit

Details

Function panels makes more efficient use of space than par(mfrow)

Note

Util functions used in most chapters of Acevedo (2018)

Author(s)

Miguel F. Acevedo Acevedo@unt.edu

References

Acevedo, M.F. 2018. Introduction to Renewable Electric Power Systems and the Environment with R. Boca Raton, FL: CRC Press. (ISBN 9781138197343)

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
wd=6; ht=3
panels(wd,ht,1,1,pty="m")
t <- seq(0,60,0.1)
x <- pow.work(t,pow="const",p=2)
pow.work.plot(x)

wd=7; ht=3.5
panels(wd,ht,1,2,pty="m")
# diode
V <- seq(-0.1,0.05,0.01) # volts
x <- diode(V)
ivplane(x)
V <- seq(-0.1,0.6,0.01) # volts
x <- diode(V)
ivplane(x)

renpow documentation built on May 1, 2019, 6:49 p.m.