knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

This is a quick guide how to use dacol

library(dacol)

# Cosine transformation function
max = 30
x = seq(-1.2*max, 1.2*max, 0.05)
plot(x, dc_cosine(x, max))

# Logistic transformation function
max = 30
x = seq(0, max, 0.05)
plot(x, dc_logistic(x, max))


ldanai/dacol documentation built on May 15, 2020, 5:05 p.m.