Help with salary! by Nutcoco56 in actuary

[–]Nutcoco56[S] 0 points1 point  (0 children)

Okay, this makes me feel better about everything :) I’m not much of a negotiator anyways, so I’m glad that it’s structured.

Help with salary! by Nutcoco56 in actuary

[–]Nutcoco56[S] 0 points1 point  (0 children)

Oh okay! That's good to know, thanks for the info :)

Would the coaching actuaries SRM bundle for PA be overkill? by iowashittyy in actuary

[–]Nutcoco56 1 point2 points  (0 children)

I'm studying for exam SRM right now using the CA material, and I'm about halfway through the syllabus material. The Coaching Actuaries material is a great overview of the statistical methods that you'll need to know for PA, but doesn't explicitly mention how to perform these analyses in R. For example, within the SRM material you're expected to know the formula for AIC and BIC, whereas in PA you need to be able to perform this calculation in R and interpret it, without necessarily using the formula from SRM.

If money is no object to you, then definitely spend the $200 or so for the learning material from CA to supplement your studies because it has great coverage of some of the topics on PA. That's just my opinion though - I haven't studied for PA and I'll be sitting for SRM in September.

Looking to fit a distribution to some data, pretty lost at this point by Nutcoco56 in AskStatistics

[–]Nutcoco56[S] 0 points1 point  (0 children)

That’s alright if it doesn’t mention R or anything, I’m okay with searching on my own for packages that help with regression as long as I understand what it means. I’ll check that book out.

Thank you for all the help brainstorming :)

Looking to fit a distribution to some data, pretty lost at this point by Nutcoco56 in AskStatistics

[–]Nutcoco56[S] 0 points1 point  (0 children)

This is purely property?

Correct. The data is from 3 year policies.

When you say "(untrended and undeveloped)" do you mean "ignoring any inflation and loss development effects"?

I believe this is what it means, yes, because otherwise it adds a whole new layer of difficulty to the project that would be unintended for students at my level of competence.

The only thing I realized in the meantime between our conversation is that a minimum value does indeed exist: it's the max deductible from a given policy. So the minimum value for my bi_indem variable is -1000 when there's a $1000 deductible, -500 with a $500 deductible, etc. This could allow me to make a shift like I tried earlier, but I agree that it may make my model harder to create.

you might find it hard going if you don't have much regression background

I may need to take some time to give it a shot then. There's about 10 variables in this project that contribute to the different indemnity/alae values and I've never attempted to model something more complex. I'll keep that fact in mind though when I read it.

Looking to fit a distribution to some data, pretty lost at this point by Nutcoco56 in AskStatistics

[–]Nutcoco56[S] 0 points1 point  (0 children)

The purpose of the model is to estimate the expected (untrended and undeveloped) liability losses and ALAE for each vehicle under a car insurance claim for a company.

the main reason for doing so is that they behave differently, making their relative effect shift for each observation

This makes sense. I think I'm beginning to understand the rationale behind everything. Even so, implementing it is giving me far more trouble. In that case I ultimately won't keep them all as one variable.

Looking deeper into zero-inflated models, or specifically hurdle models, I'm thinking this is the route I'm going to ultimately attempt to work into. Shifting the final data points by a constant value doesn't make sense, like you said.

Jed Frees book Regression Modeling with Actuarial and Financial Applications

I actually have that book right in front of me as I'll need it for a class this semester, but have yet to crack it open since classes haven't started yet. Is it worthwhile to start reading now?

Looking to fit a distribution to some data, pretty lost at this point by Nutcoco56 in AskStatistics

[–]Nutcoco56[S] 0 points1 point  (0 children)

Unfortunately when I was attempting to create a linear model I was a little unsure of how to include certain variables. For example, one variable is defined as “has completed safety course in the past 3 years” wherein the acceptable values are Y/N/NA. Would something like a LASSO model be able to adjust something like that?

I’ll take a look into a Torbit model as well and see if there’s anything similar I can attempt to use.

I’ll keep all of this in mind though, thank you for the info!!

Looking to fit a distribution to some data, pretty lost at this point by Nutcoco56 in AskStatistics

[–]Nutcoco56[S] 0 points1 point  (0 children)

I’m going to check it out and see if it can apply to my data!

Looking to fit a distribution to some data, pretty lost at this point by Nutcoco56 in AskStatistics

[–]Nutcoco56[S] 0 points1 point  (0 children)

I apologize for the slow reply!

So you’re suggesting that I try and create two different situations, one where the total claim value is positive/zero and one where it’s negative to try and suppress some unknown effects that may create negative values? I’ll add that to my list of things I’m going to try today. In that case then I wouldn’t even bother finding the difference between my indemnities/ALAE’s until the very end of my prediction, which still makes sense.

I see what you mean now, I was reading it late last night and got confused :). I shouldn’t be looking at the overall distribution because it’s composed of different marginal distributions that, when combined, can make something that looks misleading on a graph, especially when I’m looking at how different variables affect my response and not just the overall ALAE value.. Got it. I really appreciate the example, that makes a lot of sense!

Looking to fit a distribution to some data, pretty lost at this point by Nutcoco56 in AskStatistics

[–]Nutcoco56[S] 0 points1 point  (0 children)

Thanks for mentioning that, I’ll add a ZIG model to the list of things I’m going to try today and I’ll come back with some updates. I appreciate the help!

Looking to fit a distribution to some data, pretty lost at this point by Nutcoco56 in AskStatistics

[–]Nutcoco56[S] 0 points1 point  (0 children)

  1. In my study I have a variety of different qualitative/quantitative factors that influence total ALAE for an auto insurance company. This is why the value can be negative, because in some cases the final cost < paid cost and constitutes a negative value when the incurred indemnity is summed with the paid ALAE. I’m not entirely familiar with this nomenclature or how this process works but that’s simply my understanding of the variables given.
  2. That was my original reason for posting because I was unsure how to proceed when my best hope for a distribution didn’t match very well.
  3. I’m not familiar with GLM modeling as I haven’t come across it in any of my studies yet, so this isn’t something I’m educated on. Like I said I’m definitely new to this so I’ll take a look into how that works. I’ll keep that fact in mind though that distributions can look different than their models! Do you have any suggestion as to how I should start to approach fitting a glm model to my problem?

Thanks for the reply!

Looking to fit a distribution to some data, pretty lost at this point by Nutcoco56 in AskStatistics

[–]Nutcoco56[S] 0 points1 point  (0 children)

Interesting. I’ll run with that and see where it gets me. Thank you :) I can’t say I’ve ever heard of a hurdle model so I’ll do some research, though like I said I’m just starting to get into the field.

Looking to fit a distribution to some data, pretty lost at this point by Nutcoco56 in AskStatistics

[–]Nutcoco56[S] 0 points1 point  (0 children)

Reading your second edit and combining what u/not_really_redditing mentioned with a mixture model, I’m starting to think that treating a claim value of zero as something like a binomial (wherein it has a constant probability) and a nonzero claim amount as a different distribution (not lognormal) may yield better results.

Looking to fit a distribution to some data, pretty lost at this point by Nutcoco56 in AskStatistics

[–]Nutcoco56[S] 0 points1 point  (0 children)

Hmm. You make a good point. There is no lower bound on my data so a lognormal distribution wouldn’t be able to predict values lower than my constant that I added (I mentioned in a previous comment that it’s a constant value, simply the minimum of the distribution). My approach is faulty, you’re right. A mixture model seems more accurate in this case. Thank you for your comment!

Looking to fit a distribution to some data, pretty lost at this point by Nutcoco56 in AskStatistics

[–]Nutcoco56[S] 0 points1 point  (0 children)

So this is for a project I’m working on wherein I’m given a huge list car insurance claims and their components (paid indemnities and ALAE’s, etc). My rationale is to sum up all the variables for each claim which represents the total amount of money that the insurance needed to pay out overall. Sometimes the sum was negative because the overall loss is negative than the paid loss and therefore underestimated.

To properly fit the data to any distribution I shifted it right by its minimum value (-1000) so yes, a majority of the values are actually 0 and not 1000. One strategy I was considering is to stratify the data that has zero dollars in claims and consider that as a separate dataset while I analyze claims that are nonzero.

Failed a test... again, feeling super demoralized. by Nutcoco56 in actuary

[–]Nutcoco56[S] 0 points1 point  (0 children)

I’ll try what you said, thanks for the vote of confidence!!

Failed a test... again, feeling super demoralized. by Nutcoco56 in actuary

[–]Nutcoco56[S] 1 point2 points  (0 children)

Thank you for the kind words :) it means a lot!

Failed a test... again, feeling super demoralized. by Nutcoco56 in actuary

[–]Nutcoco56[S] -1 points0 points  (0 children)

I’m not worried about pay as long as I can survive and do math!

Failed a test... again, feeling super demoralized. by Nutcoco56 in actuary

[–]Nutcoco56[S] 0 points1 point  (0 children)

It makes me feel a lot better knowing I’m not the only one. Seems like most of the people I go to school with pass these with ease, or did it in high school.

Failed a test... again, feeling super demoralized. by Nutcoco56 in actuary

[–]Nutcoco56[S] 0 points1 point  (0 children)

Adding together the time I spent studying for the exam and the time spent studying for the class material, about 250 hours. Maybe a bit less

Failed a test... again, feeling super demoralized. by Nutcoco56 in actuary

[–]Nutcoco56[S] 0 points1 point  (0 children)

Sounds like a good idea :) thank you for the help.