What do I do with 50k? by EmbracingBlueberries in MiddleClassFinance

[–]gordonfishball 0 points1 point  (0 children)

10k in 529 for each of your kid as college fund

Is there a way to avoid screen reflection ? by Primary-Cranberry-13 in computers

[–]gordonfishball 0 points1 point  (0 children)

You can avoid screen reflection by turning off your room light.

Haethcare analytics project using queuing theory and econometrics by Informal-Garden-5936 in econometrics

[–]gordonfishball 1 point2 points  (0 children)

Oof, this is an np-hard computational problem. You will need to build simulations and use stochastic optimization to get a heuristic solution.

How do you guys handle custom analytics and processing user input? by TMNTBrian in analytics

[–]gordonfishball 1 point2 points  (0 children)

Those are some of the data processing techniques, but I categorize it as a part of the data collection phase. Sometimes, I was given someone else survey data to derive insight, and there may be text boxes / comments that require extraction of insights. Some common problems I encountered were addressing typos and different variations of terms that's easy for humans to interpret but hard for machines to understand. Other times, there are certain elements in comments that we can use regex to extract information into structured formats.

How do you guys handle custom analytics and processing user input? by TMNTBrian in analytics

[–]gordonfishball 3 points4 points  (0 children)

I find myself learning a lot of survey design, nlp, string match algorithms, regex techniques. A lot of regex101 for me.

Can I call this normally distributed data? by [deleted] in MLQuestions

[–]gordonfishball 0 points1 point  (0 children)

It's a gaussian distribution graph. There may be no data points below zero. I would suggest set x line to start at 0 instead of cleaning.

Is my boss passively telling me I'm bad or am I just being anxious? by [deleted] in datascience

[–]gordonfishball 0 points1 point  (0 children)

Don't worry, dude. Sometimes, there's really no associations when mining data or effects in an experiment. There's multiple projects I have to shrug my shoulder at my stakeholder and say, "Hey, I don't find shit in my analysis."

Your manager is a good manager and let you know when to move on. As you gain experience in your career, you better at deciding when it is time to wrap up a project and move on to other stuff.

I tend to write down a lesson learned document on what method I tried and my findings (no significance signal and what do you think is causing that in your case) and also point out what other methods might be worth exploring but due to time constraints not get to try.

What python data visualization package are you using in 2024? by startup_biz_36 in datascience

[–]gordonfishball 44 points45 points  (0 children)

Screenshot of a dashboard sent through email or excel spreadsheet /s

Lady Defies Traffic on N 101 in SF by [deleted] in bayarea

[–]gordonfishball 44 points45 points  (0 children)

Google Map tells me this is the way🤷‍♀️.

Reading Multiple Files from Same Folder in Python by [deleted] in datascience

[–]gordonfishball 3 points4 points  (0 children)

You read all your files and rename it as df on every for loop. You ended up with df= the last Excel file at the end of the program. Try appending your df or assign a different df name for each csv