3

I have some data for numbers that are positive and these numbers are capped above at C (so if a sample from my data should have exceeded C, the data generating process will simply return C).

I know which of the samples were capped and which ones were not.

I am happy to assume that these data points are lognormally distributed and would like to estimate the parameters of the uncapped lognormal distribution. How do I use my uncapped data and apply MLE to achieve this? If lognormal is too hard for some reason, I am open to using normal or other distributions.

whuber
  • 322,774
ryu576
  • 2,540
  • There's an algorithm outlined here that's suitable for the normal case and my previous comment gets you the lognormal from that. – Glen_b Oct 14 '15 at 06:46
  • 1
    @Glen_b That algorithm is for right truncated data which is not the same as right censored data. – Jarle Tufto Jul 29 '17 at 22:12
  • @Jarle you're correct, I was responding to the title (which previously said "truncated), but the description is indeed of a censored problem. I should have typed censored in my first comment and the one at the link doesn't apply either, as you say. Thanks for pointing this out. – Glen_b Jul 30 '17 at 01:02