https://github.com/cran/GsymPoint
Revision a29480d9f8d433e7cbcb966f145039fabc2226c5 authored by Mónica López-Ratón on 28 August 2015, 01:20:23 UTC, committed by Gabor Csardi on 28 August 2015, 01:20:23 UTC
0 parent
Raw File
Tip revision: a29480d9f8d433e7cbcb966f145039fabc2226c5 authored by Mónica López-Ratón on 28 August 2015, 01:20:23 UTC
version 1.0
Tip revision: a29480d
cOpt_gsym2_empirical.R
cOpt_gsym2_empirical <-
function(t, parameters)
{
  cte = parameters[1]
  x0b = parameters[2:length(parameters)]
  ROCt = 1-cdf_empirical_dist(x0b, 1-t)
  res <- (1/cte)*(1-t)-ROCt
  return(res)
}
back to top