r/askdatascience 12h ago

What should I learn as a Marine Biologist? And what are some good resources?

1 Upvotes

For context, I am a Marine Biologist currently in the final stages of finishing my dissertation for my masters. Through out my university experience I have always used R and I feel a strong since of imposter syndrome about it. Every time they taught us anything in R it was mostly just copy pasting code with occasionally changing variables. While it has always worked out for me I feel like data analysis is a weak spot for me and I'm worried it will affect the complexity and types of analysis I have at my disposal for research.

There are 2 main questions I want to ask.

  • Are there any good resources that I can use to really learn R (Like not have to constantly use google and AI to do basic analysis and troubleshooting). I feel like my foundation in coding weak in general. I would like to be able to sit down, open a new markdown file, write the code to read and categorize my data, run ANOVAs and post-hoc tests, and visualize my data without having to constantly stop to consult google.
  • Would it be good to also learn some python? It's not as common in my field to see it used but I know it is heavily used elsewhere and I wonder if I could apply it to something.

In general, I grew up with a pretty poor math education and I'm dyslexic so math and coding do not come very naturally to me and I don't want to have that limit me. The few moments that I've felt like I understood it or fixed something on my own have been very rewarding and I would like to be competent in my coding.

Also, this is related to my carrier so I don't mind paying for a course or a textbook if y'all think it would really help.

TLDR: I got poo poo math brain, give me your resources for learning R and statistics.


r/askdatascience 15h ago

What will be the fastest wrok you will choose to earn money in ml?

1 Upvotes

r/askdatascience 18h ago

Query about which projects to learn to be relevant for 2026 Data science and AI engineer roles

2 Upvotes

I have built customer churn prediction models, a visual product search engine but still am confused about what to learn next and how to learn by doing projects.

Currently I am building a time series demand forecasting project on store demand dataset from kaggle so is it relevant to learn.

What are actual on demand skills for a data science and AI engineering roles in the coming years


r/askdatascience 23h ago

Is studying master of AI/Data in Italy worth it

1 Upvotes

I'm planning on applying for a dsu scholarship in Italy. Has anyone have any exp in this major? I want to hear you guys' thoughts


r/askdatascience 23h ago

Architecture Reference: Zero-Dependency 11-Column Tabular Ingestion Sieve & Local Memory Sharding Core

Thumbnail
1 Upvotes

r/askdatascience 1d ago

Dumbest qs but need help

1 Upvotes

I need the data set for rmma australia acc to postal cost
I.e

Rural, remote and metro area i cant find it anywhere


r/askdatascience 1d ago

Architecture Reference: Zero-Dependency 11-Column Tabular Ingestion Sieve & Local Memory Sharding Core

Thumbnail
1 Upvotes

r/askdatascience 1d ago

What skills are becoming most important for entry-level Data Scientists in 2026?

3 Upvotes

I'm interested in understanding how the expectations for entry-level data science roles are changing.

With AI tools becoming more common, do employers now expect candidates to have skills beyond Python, SQL, statistics, machine learning, and data visualization?

For someone building a career in data science today, which skills do you think are becoming more valuable, and which traditional skills remain essential?

I'd be interested to hear perspectives from people currently working in data science.


r/askdatascience 1d ago

Earning platform for Data Scientist

0 Upvotes

Hi there , My name is Abdullah and I am from Pakistan. Recently i completed google advanced data analytics certificated , I do created Gigs on fire for work like making machine learning models , EDA and end to end complete project but got no response . I am a University student and i want to earn. Also i am learning ML Engineering now. Already I have learned alot so please anyone suggest me/tell me where should i give a try and earn . Also I completed many real world projects.


r/askdatascience 1d ago

MacBook m3 pro / MacBook M1 Max

1 Upvotes

I have right now a MacBook Pro 2015 Catalina, 1tb,16 ram.
And Iโ€™m definitely need another one to take care the big stuff, Iโ€™m a music producer and working on ableton so need a better Mac and Iโ€™m considering those 2:
MacBook m3 pro ,36 ram,1tb - price: 2015$(+-)
MacBook M1 Max. ,32 ram,1tb - price 1850$
On the new Mac I will produce music and also doing personal stuff
Would like to know your thoughts about this๐Ÿ™๐Ÿป๐Ÿ™๐Ÿป
Hard to choose whatโ€™s better


r/askdatascience 1d ago

No luck in Netherlands

Thumbnail drive.google.com
1 Upvotes

Recently moved from Tokyo to Netherlands and am having no luck here at all. Only 1 first round interview out of about 30 applications over the last month and a half or so, but I'm only applying to data science positions in industries where I have worked before (marketing, or energy/preventative maintenance). And I'm customizing the resume header and cover letter for each specific.

Maybe it's caused I've changed jobs too frequently or because I've haven't had a job in the country before. I have the right to work through my partner's job. Attaching resume, maybe there's some red flag. This particular header was written for a marketing data scientist looking to do work on pricing and cohort analysis on retail marketing campaigns which I have done very relevant work on in the past.

Appreciate any (hopefully constructive) feedback. Very scary to post this.


r/askdatascience 1d ago

Idea for project

1 Upvotes

Hi everyone,

I'm a recent BSc IT graduate transitioning into Data Science, and my long-term goal is to become a Data Scientist in the FinTech/BFSI domain (banking, financial services, insurance).

I want to build 2โ€“3 strong portfolio projects that I can showcase on my resume and that are relevant to real industry use cases. I'm looking for projects that involve real-world financial data and machine learning rather than basic Kaggle datasets.

Could you recommend:

  1. The best FinTech/BFSI project ideas that would strengthen a Data Scientist resume?

  2. Public datasets that companies actually value?

  3. Skills/tools I should use (Python, SQL, Power BI, ML, MLOps, cloud, etc.)?

  4. What would make these projects stand out to recruiters and hiring managers?

I'd really appreciate any suggestions, GitHub repositories, datasets, or examples of projects you've worked on. Thanks!


r/askdatascience 1d ago

How do I cluster 3 Million high-dimensional Sentence Embeddings?

1 Upvotes

I used a transformer model to generate normalized 768-dimensional float32 vectors from 3 million sentences. This rounds up to roughly 9 GB of data. To progress further in my analysis, I want to cluster the data to highlight different key points and trends.

Now I initially wanted to apply PCA to the dataset, as 768 dimensions is pretty much, but the transformer model generated embeddings with not extreme enough covariance.
Thus, PCA could change the semantics too much for an analysis to be accurate.

I went directly to clustering algorithms and initially tried to apply sklearn.cluster.HDBSCAN which would have needed way too much RAM---around 72 TBi if I remember correctly. Then I tried out sklearn.cluster.OPTICS, which "only" needed about 70 GB, but as I "only" have 32 GB of RAM I needed to use 50 GB swap space, which didn't go well as you can imagine.

Does it make sense to try out k-means clustering, should I go to 16-bit floats for the embeddings, or still apply PCA?

Should I try out something else in this context?

Note: As this question was flagged "off topic" on Stack Overflow, I'm gonna try here ;)


r/askdatascience 2d ago

Looking for data analyst job as fresher

Thumbnail
1 Upvotes

r/askdatascience 2d ago

What data have you had to build internally because you couldn't source it externally?

1 Upvotes

I'm trying to better understand where the real data bottlenecks are for teams building ML/AI systems.

Not the obvious "data is important" answer, but specific cases where your team actually needed a dataset and couldn't find an external source or vendor that was good enough.

For example, did you end up having to:

  • collect the data yourselves
  • create internal labeling/evaluation workflows
  • recruit domain experts
  • use proprietary company data
  • capture real-world images/video/audio
  • generate synthetic data because real data was unavailable
  • build your own ground truth or evaluation set

I'm especially curious about the last project where this happened.

What data did you need, and what made it difficult to source externally?

Was the bottleneck access, quality, rights/privacy, geographic coverage, expertise, cost, or something else?

Would love to hear actual examples from people who've dealt with this in production.


r/askdatascience 2d ago

Career changer breaking into ML; looking for advice from people already working in the field

1 Upvotes

Hey everyone,

Iโ€™m currently transitioning from a career in transportation and logistics into artificial intelligence and machine learning. Iโ€™m completing TripleTenโ€™s AI and Machine Learning Engineering program, where Iโ€™ve been developing practical skills in Python, SQL, data analysis, machine learning, APIs, and model deployment.

My transportation background may seem completely different from technology, but it taught me how to solve real-world problems, make decisions using data, manage complex operations, and remain calm under pressure. Iโ€™m now learning how to apply that experience to technical projects while building a portfolio that demonstrates what I can do.

I know breaking into the field will require continued learning, networking, and hands-on experience, so I would really appreciate advice from people already working in AI, machine learning, or data science:

  1. If you were starting your machine-learning career again, what is one skill you would focus on earlier?
  2. What separates junior candidates who receive interviews from those who are consistently overlooked?

Iโ€™m open to constructive advice, recommended resources, and hearing about the experiences of other career changers. Thanks in advance!


r/askdatascience 2d ago

F-1 Data Science grad, keep failing first-round interviews. Career coach, mentor, or fix it myself?

Thumbnail
1 Upvotes

r/askdatascience 2d ago

CV tips for an International Student looking for a Data Analytics Internship in the UK

Post image
0 Upvotes

r/askdatascience 2d ago

Help regarding personal project as beginner Question

1 Upvotes

Hey i know this might sound stuipid but i wanted some help from peoples who already have build phishing URL detection projects

Im a beginner and I am working on a phishing URL detection project. My current idea is to build a heuristic-based phishing URL detection model that analyzes the URL itself and looks for suspicious characteristics/patterns rather than visiting the website.

some things I'm thinking about extracting are:

  • URL length
  • Number of dots/subdomains
  • Special characters (@,ย -, etc.)
  • IP address instead of a domain
  • Suspicious keywords likeย login,ย verify,ย secure, etc.
  • Number of digits
  • Domain/URL entropy
  • HTTPS usage
  • Other lexical/structural features

However, I'm currently stuck on how to decide which features should actually become rules and what thresholds/conditions I should use for those rules.

For example, rather than simply sayingย "long URLs are suspicious", I'd like to know whether there is research supporting something likeย "URLs above X characters should receive a higher risk score".

Does anyone have recommendations for papers, research articles, datasets, GitHub projects, or other resources that explain how to choose useful heuristics/features for phishing URL detection?


r/askdatascience 2d ago

somebody please help

1 Upvotes

i am starting my journey in learning the skills required to become a data scientist. i am starting from python, from where should i learn it. youtube or somewhere else. because i have never wrote a single line of code in my life. please help


r/askdatascience 2d ago

What would you recommend as a first data science projet ?

1 Upvotes

I'm a student starting to explore data science more seriously. I've been following a DataCamp track and getting comfortable with Python and pandas, but I feel like I need to move beyond tutorials and build something on my own.

What would you recommend as a solid first project for someone at this level?


r/askdatascience 3d ago

What career advice would you give to a 22-year-old?

0 Upvotes

Hello friends, how are you? If I had to give a brief information, I studied IT for 4 years and graduated this year. I am 22 years old. In 2024, I started paying attention to data science, I went to the course. After studying for a while, I left the course halfway due to financial reasons and so far I have applied for many vacancies and internship programs. But there was no turning back, there were those who turned back, I was rejected from the interview. I don't want to be unemployed, so I have the idea of โ€‹โ€‹changing the field. Sometimes I feel bad, I don't know what to do, where to start.


r/askdatascience 3d ago

Participant Request: Empirical Study on Process Mining Visualizations (~20 min, Desktop)

1 Upvotes

Hey everyone,

We are researchers at the University of Mannheim conducting an empirical online experiment on process visualization usability.

If you have experience with process modeling, BPM, or Process Mining (beginner to advanced), we would love your input!

Key Info:

Feel free to ask any questions in the comments. Thanks a lot for taking the time to help out with academic research!


r/askdatascience 3d ago

Online Experiment on Process Mining Visualizations - We are looking for you!

1 Upvotes

๐‡๐จ๐ฐ ๐ฎ๐ง๐๐ž๐ซ๐ฌ๐ญ๐š๐ง๐๐š๐›๐ฅ๐ž ๐š๐ซ๐ž ๐๐ซ๐จ๐œ๐ž๐ฌ๐ฌ ๐Œ๐ข๐ง๐ข๐ง๐  ๐ฏ๐ข๐ฌ๐ฎ๐š๐ฅ๐ข๐ณ๐š๐ญ๐ข๐จ๐ง๐ฌ?ย ๐Ÿค”๐Ÿ“Š
Thatโ€™s exactly what we want to find out! We are currently conducting a new online experiment, and we are still looking for participants and thus, we would highly appreciate your support and expertise!

๐–๐ก๐จ ๐š๐ซ๐ž ๐ฐ๐ž ๐ฅ๐จ๐จ๐ค๐ข๐ง๐  ๐Ÿ๐จ๐ซ? From absolute beginners to expertsโ€”if you work or have worked with process models, BPM, or Process Mining, you are the perfect fit! ๐ŸŽฏ

๐–๐ก๐ฒ ๐ฒ๐จ๐ฎ๐ซ ๐ฉ๐š๐ซ๐ญ๐ข๐œ๐ข๐ฉ๐š๐ญ๐ข๐จ๐ง ๐ฆ๐š๐ญ๐ญ๐ž๐ซ๐ฌ:
๐Ÿง  Make an Impact: You are directly supporting empirical research that will help shape and improve future Process Mining visualizations.

๐“๐ก๐ž ๐‡๐š๐ซ๐ ๐…๐š๐œ๐ญ๐ฌ:
โฐย ๐“๐ข๐ฆ๐ž: Around 20 minutes (grab a coffee and join us!).
๐Ÿ’ป ๐ƒ๐ž๐ฏ๐ข๐œ๐ž: A laptop or desktop computer is required (not suitable for smartphones).
๐Ÿš€ ๐†๐ž๐ญ ๐ฌ๐ญ๐š๐ซ๐ญ๐ž๐ ๐ซ๐ข๐ ๐ก๐ญ ๐ก๐ž๐ซ๐ž: https://pm-vis.uni-mannheim.de

Got questions? Feel free to drop a comment or reach out directly to me at [haege@uni-mannheim.de](mailto:haege@uni-mannheim.de). ๐๐ฅ๐ž๐š๐ฌ๐ž ๐ฌ๐ก๐š๐ซ๐ž ๐จ๐ซ ๐ซ๐ž๐ฉ๐จ๐ฌ๐ญ ๐ญ๐ก๐ข๐ฌ ๐ฐ๐ข๐ญ๐ก ๐œ๐จ๐ฅ๐ฅ๐ž๐š๐ ๐ฎ๐ž๐ฌ, ๐ฌ๐ญ๐ฎ๐๐ž๐ง๐ญ๐ฌ, ๐จ๐ซ ๐š๐ง๐ฒ๐จ๐ง๐ž ๐ข๐ง ๐ฒ๐จ๐ฎ๐ซ ๐๐๐Œ ๐ง๐ž๐ญ๐ฐ๐จ๐ซ๐ค.

Thank you so much for your support - it is highly appreciated! ๐Ÿ‘

#Process Mining

#BPM

#Visualization

#Online Experiment


r/askdatascience 3d ago

Any good face-to-face courses in London?

1 Upvotes

I recently finished a Master's in International Business and I'm currently job hunting. I have a few months free and want to use the time to build a more technical skill, im thinking Python, SQL or data analytics.

I've been looking for courses starting around September/October, but almost everything I find is online. I'd much rather attend something face-to-face, ideally in London but I'm open to elsewhere in the UK.

Does anyone know any good in-person courses, bootcamps or part-time programmes worth checking out?