a2c: Work Function for 'smoothSurvReg'

View source: R/convertCDA.R

a2cR Documentation

Work Function for 'smoothSurvReg'

Description

Compute the 'c' G-spline coefficients from 'a' G-spline coefficients.

Usage

a2c(acoef)

Arguments

acoef

A vector of 'a' G-spline coefficients.

Details

'c' and 'a' G-spline coefficients are related by the expression

c[j] = exp(a[j])/[exp(a[1]) + ... + exp(a[g])], j = 1, ..., g,

where a[k] = 0, k = which.zero. This function transforms the 'c' coefficients into their 'a' counterparts.

Value

A vector of same length as acoef with 'c' G-spline coefficients.

Author(s)

Arnošt Komárek arnost.komarek@mff.cuni.cz

See Also

c2a

Examples

ccoef <- c(0.1, 0.2, 0.15, 0.3, 0.25)

### Compute 'a' counterparts
acoef <- c2a(ccoef, 1)
print(acoef)

### And back 'c', ccoef2 should be same as ccoef
ccoef2 <- a2c(acoef)
print(ccoef2)

smoothSurv documentation built on Oct. 11, 2022, 1:05 a.m.

Related to a2c in smoothSurv...