spruce_scatter: spruce_scatter

View source: R/spruce_scatter.R

spruce_scatterR Documentation

spruce_scatter

Description

NA

Usage

spruce_scatter(data, title = FALSE)

Arguments

data
title

Details

NA

Value

NA

Author(s)

NA

References

NA

See Also

NA

Examples

##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (data, title = FALSE)
{
    mainTitle = NULL
    y_max = max(data[2])
    x_max = max(data[1])
    if (title == TRUE) {
        mainTitle = "Height vs Breast Height Diameter"
    }
    plot(Height ~ BHDiameter, bg = "Blue", pch = 21, cex = 1.2,
        ylim = c(0, y_max), xlim = c(0, x_max), main = mainTitle,
        data = data)
  }

arukshpatel/MATH4753.ArukshPatel.SP22 documentation built on March 19, 2022, 3:38 a.m.