tests/testthat/test_normaliseDensities.R

library(testthat)

test_that('normaliseDensities works on a trivial example, U(0,2)', {
  x = seq(0,2,length.out =512)
  y = matrix(rep(1,length.out =512), nrow = 1)
  
  z = normaliseDensities(dmatrix = y, dSup = x)
  expect_equal(rep(0.5, 512), as.vector(z)) 
  
})

Try the fdadensity package in your browser

Any scripts or data that you put into this service are public.

fdadensity documentation built on Dec. 5, 2019, 9:07 a.m.