Skip to contents

Flinn diagram

Usage

flinn_plot(R_XY, R_YZ, main = "Flinn diagram", R.max = NULL, log = FALSE, ...)

Arguments

R_XY

ratio of maximum strain and intermediate strain

R_YZ

ratio of intermediate strain and minimum strain

main

character. The main title (on top).

R.max

numeric. Maximum aspect ratio for scaling.

log

logical. Whether the axes should be in logarithmic scale.

...

plotting arguments passed to graphics::points()

Value

plot and when stored as an object, the multiplication factors for X, Y and Z.

Examples

data(holst)
R_XY <- holst[, "R_XY"]
R_YZ <- holst[, "R_YZ"]
flinn_plot(R_XY, R_YZ, log = FALSE, col = "#B63679", pch = 16)

flinn_plot(R_XY, R_YZ, log = TRUE, col = "#B63679", pch = 16)