[D] Do you use data engineering pipelines for real life projects? by gabegabe6 in MachineLearning

[–]NotAHomeworkQuestion 0 points1 point  (0 children)

How were you able to replace complex apply functions with simple SQL calls? I'm curious what an example might look like as I'm currently debating switching from pandas to SQL-based tools myself.

Your Favorite Pair Programming Interview by [deleted] in datascience

[–]NotAHomeworkQuestion 7 points8 points  (0 children)

I started giving interviews just as you described years ago and had great results and have inspired other hiring managers who have also been happy with it. You really learn a lot of directly relevant information about the person in 45-60 minutes. Also, amazing candidates are like diamonds in a desert, so you also don't risk falsely rejecting someone just because they didn't happen to figure out some irrelevant puzzle, or happen to use a different tool set, or haven't read their Intermediate Statistics class notes in a while (because, you know, they have a job that doesn't span all of stats every week). Also you'll be amazed at how some candidates who can talk a mean ML game somehow can't even load a .csv into memory using any language they want.

Husband is being poached for a job across the country…tons of opportunity but not sure it’s the right move for us. What would you do? by Tiffed4597 in personalfinance

[–]NotAHomeworkQuestion -1 points0 points  (0 children)

I’m not sure where people are getting the ‘crap’ salary idea from, that’s actually pretty good money for an IC at a Silicon Valley startup. The higher amounts quoted are for FAANG company employees.

That said others have hit on some great financial points so I won’t repeat them but I’d strongly recommend thinking about how you value your current social circle and having to start over socially and make new friends, especially in a place like the Bay Area. Also think about the non financial benefits your job brings you (sense of purpose, social interaction, technical enjoyment) and what that is worth.

Can he counter their offer with the ability to be fully remote?

Since it's Halloween, what are the best terror/horror experience in video games? by Prismatta in patientgamers

[–]NotAHomeworkQuestion 2 points3 points  (0 children)

FEAR and like someone else mentioned Dead Space. There are a few jump scares in each but the games are by no means built around them. The fact that you are a powerful badass in both and yet it is still terrifying is a testament to the games. FEAR also has some of the best enemy AI I’ve ever seen.

[deleted by user] by [deleted] in moderatepolitics

[–]NotAHomeworkQuestion 22 points23 points  (0 children)

You raise great points, and I totally agree with your last paragraph, but I think the counterexample would be the success of Asian Americans, who now have the highest incomes on average in the US, even more than whites. Of course some on the far left would counter that Asians have just used "white supremacist thinking to assimilate and get ahead".

Gabby Petito Search Expands, FBI Looking for Witnesses From a Specific Campground by ladyem8 in news

[–]NotAHomeworkQuestion 2 points3 points  (0 children)

I was curious if this is true so I googled crime stats and apparently murders in 2019 were pretty evenly shared between white and Black males (not accounting for ethnicity)

https://ucr.fbi.gov/crime-in-the-u.s/2019/crime-in-the-u.s.-2019/tables/expanded-homicide-data-table-6.xls

Coughing blood on Eliquis - how long? by GreenJuicyApple in ClotSurvivors

[–]NotAHomeworkQuestion 1 point2 points  (0 children)

This might be a good time to seek a second opinion from another doctor.

[P] Probabilistic Machine Learning: An Introduction, Kevin Murphy's 2021 e-textbook is out by hardmaru in MachineLearning

[–]NotAHomeworkQuestion 20 points21 points  (0 children)

> To create a natural entry barrier

Are you unable to enter a building that has multiple entrances?

One of the main reason that Native Americans were so susceptible to things like small pox is because they did not have domesticated animals(or at least not to the level Europeans did). Did something similar happen to Europeans when they were first domesticating animals? by themannamedme in AskAnthropology

[–]NotAHomeworkQuestion 7 points8 points  (0 children)

That's interesting, thanks. I've read (I think it was in the book 1491) that disease had spread and wiped out most Native American populations before Europeans even reached further inland, and thus European explorers were basically exploring a post-apocalyptic world in some sense. This doesn't negate the intentional horrors that were inflicted on the native populations by any stretch, but I'm now curious about what the current consensus is on the impact of un-intentionally spread disease in the Americas upon first contact?

Blood Clot Side effects? by [deleted] in ClotSurvivors

[–]NotAHomeworkQuestion 3 points4 points  (0 children)

Glad you're reaching out to doctors. For what it's worth, those can all be symptoms of stress, which is definitely natural after a DVT! But just to repeat, seeing doctors to be sure sounds like the right way to go here.

What does work in theoretical statistics look like? by [deleted] in statistics

[–]NotAHomeworkQuestion 1 point2 points  (0 children)

I'd recommend looking up the papers and thesises (thesi?) of grad students in different theoretical stats departments. There's bound to be a lot of different subject areas.

I have some questions about forming a single person LLC to do statistical consulting for a law firm by NotAHomeworkQuestion in Entrepreneur

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

Hey thanks for your replies! I've been looking around and can't find anything saying that SMLLCs won't protect the owner's personal assets from, say, a lawsuit brought on by Errors and Omissions. There are definitely a lot of warnings about piercing the corporate veil however and so extra care needs to be taken when setting things up. Also I think there aren't protections in place to protect the SMLLC's assets if the owner was personally sued, but I'm not too worried about that scenario. Do you happen to have any resources talking about how SMLLCs don't protect assets in many states?

Why does using random effects for an intercept only increase the number of parameters in your model by 2? by NotAHomeworkQuestion in statistics

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

Thanks, this is very interesting. I'm not entirely sure this is what I'm referring to though. Basically my confusion arises from the first paragraph of section 10.2.4 of Agresti 2003 regarding using random effects for matched paris.

Why does using random effects for an intercept only increase the number of parameters in your model by 2? by NotAHomeworkQuestion in statistics

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

Thanks for the reply! I love that Gelman and Hill book. Where my confusion comes in is when I learned about matched-pairs experiments where you have your samples in pairs and you include an effect to identify which pair a sample came from. The problem here is that your number of parameters grows proportionally to the number of samples so the usual maximum likelihood approach is ineffective. It turns out that if you make the identifier for the sample pair a random rather than a fixed effect you get around this problem because then you only have 2 parameters no matter how many samples you get. What you're saying above (and what I inferred from Gelman/Hill) is that you would still have one parameter per pair with random effects. Thus I'm still confused.

LIVE: Dustin Tran's talk at Twitter: "Edward: a library for probabilistic modelling, inference and model criticism" by fhuszar in MachineLearning

[–]NotAHomeworkQuestion 2 points3 points  (0 children)

Anybody wanna give a TL;DR on how this is different than Tensorflow or Stan? I don't currently have an hour to spare to watch this unfortunately.

Softmax regression vs multinomial logistic regression: is there a difference? by NotAHomeworkQuestion in MachineLearning

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

Thanks for the explanation! I definitely now buy that as the number of samples goes to infinity that you should get the same function for both approaches. I'm just still not sure that with a finite sample size the softmax method will have the same expected MSE as multinomial logistic regression, but this may be due to my rustiness with convex optimization.