Skip to contents

The scattering plot is generated without any labels or marks for the X-axis, which is very simple. A horizontal line is included with the threshold value, which serves as the basis for the figures that will be generated through the analysis, whether they are simple or compound figures.

Usage

fn_LTGSI(x, y, df, xl, yl, Icut, ylimit)

Arguments

x

A vector containing the values of the independent variable.

y

A vector containing the values of the dependent variable.

df

A data frame

xl

A label for the X-axis

yl

A label for the y-axis

Icut

A threshold Value

ylimit

A vector value with a minimum and maximum limit for y-axis

Value

A scatter plot of the y value by factor level across the x range also includes a horizontal dashed line representing the threshold value. Colors are manipulated with the rgb() function of the grDevices package

Examples

  if (FALSE) {
  x <-x
  y <- y
  df <- tmp
  xl <- etiquetas[1]
  yl <- etiquetas[3]
  Icut <- 2.3
  ylimit <- c(0,45)
 ejemplo <- fn_LTGSI(x, y, df, xl, yl, Icut, ylimit)
  }