Closed JonasMoss closed 5 years ago
This code causes problems:
speed = morley$Speed plot(kdensity(speed, start = "normal"))
But this does not:
speed = morley$Speed/sd(morley$Speed) plot(kdensity(speed, start = "normal"))
This is probably due to an overflow issue: Should we recenter the data prior to integration?
This code causes problems:
But this does not:
This is probably due to an overflow issue: Should we recenter the data prior to integration?