A pair months in the past I wrote about 3 Claude abilities each information scientist must study in 2026:
-
Claude Dashboards
-
Claude Cowork for prioritizing Jira tickets
-
Debugging with Claude Code.
However these use instances solely scratch the floor. There are lots of extra methods Claude can lower down repetitive work and unlock time for the elements of the job that really want an individual. So listed here are 4 extra.
1. Deep Analysis for Evaluating Modeling Approaches

If you ask Claude a query, it’s going to pull from one among three sources:
-
Its personal coaching information and data
-
Internet search
-
Analysis
Internet search and Analysis each should be enabled. Internet search will question the net for a singular reply to your query.
However Analysis runs a sequence of linked internet searches by itself, every one constructing on what the final one discovered. It then arms again a complete report with citations.
use analysis mode in Claude:
-
Click on the + button on the backside left of the chat window.
-
Choose Analysis (a blue indicator confirms it is energetic).
-
If Claude does not set off it mechanically on a query that requires it, say so immediately: “Claude, please use the analysis device to…”
Listed below are some actual information science use instances for the Claude analysis device:
Downside: You are new to constructing agentic AI methods and wish to know present finest practices for evaluating whether or not an agent is prepared for manufacturing earlier than delivery one for the primary time.
Claude Deep Analysis immediate:
Summarize present finest practices and analysis frameworks for testing AI brokers earlier than manufacturing deployment. Cowl frequent failure modes like looping, device misuse, and hallucinated actions, and the way groups measure reliability earlier than delivery. Cite current papers, printed benchmarks, or documented approaches from AI labs.
Downside: Resolve whether or not to rebuild a manufacturing forecasting mannequin round a more moderen strategy or preserve the gradient boosting setup already working.
Claude Deep Analysis immediate:
Evaluate classical statistical forecasting strategies (SARIMA, exponential smoothing) towards gradient boosting and transformer-based fashions for hourly power load forecasting. For every strategy, summarize accuracy on multi-day horizons, information quantity necessities, and documented failure modes. Cite particular papers or benchmarks.
Downside: Resolve which outlier detection technique to use to a brand new dataset with robust seasonal patterns earlier than it reaches a manufacturing mannequin.
Claude Deep Analysis immediate:
Evaluate z-score, IQR, and isolation forest strategies for outlier detection in seasonal time collection information. Summarize the place every technique tends to supply false positives, computational value at scale, and documented steerage on selecting between them. Cite particular sources.
For this final one, Claude got here again with an organized doc containing the next sections:
-
TLDR/Abstract
-
Strategies Overview – goes over what z-score, IQR, and isolation forests are and the way they work
-
False-Constructive Patterns per Technique (in Seasonal Contexts)
-
Computational Price and Scalability
-
Choice Steerage: Selecting Between Strategies
-
Caveats – Discusses limitations with its findings
2. HTML Venture Transient for Stakeholders
As an example you’re employed for a Social Media Advertising and marketing firm the place you’ve been engaged on a content material engagement forecasting mannequin for a selected short-form reel marketing campaign. Nonetheless, the mannequin isn’t working as anticipated. So that you and different information scientists make a 2 month plan for mannequin enhancements.
However non technical stakeholders are sometimes impatient and don’t perceive why the posts will not be performing in addition to initially anticipated. They need enhancements this week (which as information scientists know is commonly an unrealistic deadline).
Making a venture temporary will help. It shouldn’t be overly technical, but it surely ought to clarify the principle ideas in plain language and provides an excellent sense of the plan, the timeline, and the present state of the venture.
Claude is nice at producing HTML abstract pages. Right here’s a immediate you should utilize (clearly you’ll must plug in your specifics):
Create a single HTML venture temporary for stakeholders on our Content material Engagement Forecasting Mannequin v2 rebuild.
Downside: our present engagement prediction mannequin underperforms on short-form video, which now makes up most of what we publish. This venture rebuilds it to deal with video-specific indicators with out slowing down the content material calendar approval course of.
Strategy: a hybrid setup. The prevailing mannequin stays in place for static pictures and carousels. A brand new specialised module handles short-form video utilizing body sampling and caption embeddings. Each are validated towards 18 months of publish efficiency earlier than shadow deployment.
Timeline: Aug 1, strategy finalized. Aug 22, validation full. Sep 1, shadow deployment begins. Sep 15, stakeholder evaluation. Oct 1, full rollout.
Stakeholders: Information Scientist as mannequin proprietor, a Content material Technique Lead for content material calendar integration, a Advertising and marketing Ops Lead for rollout approval.
Open questions: acceptable false-negative charge for flagging low-performing video earlier than it is scheduled, turnaround time funds for scoring throughout marketing campaign pushes, and lacking caption and hashtag information for 3 newly added platforms.
Embody a visible timeline with the goal dates. Maintain it to 1 web page, scannable in below two minutes.
Right here’s the output:

3. Claude Design for Stakeholder Slide Decks

Claude Design is a separate device from Claude chat and Cowork, constructed for visible design work. Examples embody:
-
Slide decks
-
Cell app design
-
HTML emails
-
Invoices
-
Resumes
It focuses on producing structured sorts of paperwork the place textual content alignment and formatting issues extra. When you’ve tried to create slide decks or invoices with pure Claude Chat or Cowork you will have seen that it generally produces pictures with textual content overlapping or misaligned. Design is healthier at not making these errors.
use Claude Design
-
Click on “Design” with the paint palette icon within the backside left nook of Claude.
-
Choose “Slides” below Select a Template and the mannequin you need to use.
-
Select a “Design System” you wish to get you began.


As soon as you’ve got configured your settings, enter the immediate:
Create a 3-slide stakeholder replace deck for a month-to-month check-in on a machine studying venture. One thought per slide, minimal textual content.
SLIDE 1: Title
Content material Engagement Forecasting Mannequin v2
Stakeholder replace, August 2026
Month-to-month replace. On monitor for October rollout.SLIDE 2: Outcomes
Heading: Mannequin efficiency this month
Subhead: Validated towards 18 months of publish efficiency information
Three key metrics:
12.4% — Prediction error (MAE) — down from 19% final quarter
91% — Prime-quartile accuracy — accurately flags excessive performers
3 of three — Viral spikes — accurately flagged this month
SLIDE 3: Subsequent steps
Heading: Subsequent stepsOct 1 — Full rollout: Mannequin goes stay for video content material scoring
Sep 1 — Shadow deployment begins: Mannequin scores content material alongside the present course of
Sep 15 — Stakeholder evaluation: Share shadow-period outcomes, verify go/no-go standards
Here is what it comes out with:


4. Claude Code for Documentation & README
Writing documentation (particularly READMEs) was one of the vital tedious elements of ending the code-writing course of. The good thing about Claude Code will not be solely that it may write code, but it surely really understands what it is writing. And even when it did not write the code for you, it is educated particularly to know a codebase that is already been written (even by one other particular person or one other AI).
I not too long ago labored on a venture the place I used to be making modifications to the repository with 2 completely different AI instruments. I’d push one’s modifications to Github, then pull it in with Claude Code, ask it to validate any modifications the opposite AI made, debug if wanted, after which push it again as much as the repo.
Within the case of an ML mannequin, Claude can learn by way of your notebooks or .py recordsdata as properly and produce a straightforward to know README, in addition to different supporting documentation and docstrings.
Right here is an efficient beginning immediate you should utilize:
Learn this coaching script and analysis pocket book. Generate a README overlaying:
What the mannequin predicts
The enter options, what they imply and their sources
The way it was educated and validated
Identified limitations and future enhancements
Steps to load the mannequin and consider it
Steps to retrain, re-evaluate, and save the most recent mannequin
Assume the reader has by no means seen this codebase.
Here is an instance output:

Conclusion
Every of Claude’s “modes” (Analysis, Design, Code, Chat) are constructed to focus on completely different duties. Whereas there may be overlap in what they’re in a position to do, I’ve positively seen a distinction in output high quality when utilizing one over one other for particular duties. I’d extremely advocate you experiment with every one relying on what you are attempting to do.
A number of notes about every ability:
-
All the time double verify the sources Claude Analysis used. Except explicitly requested (and even then) there isn’t a assure it’s going to solely have a look at peer reviewed scientific analysis papers. I seen it was additionally looking and pulling data from weblog websites like Medium, which anybody can publish to.
-
Claude is usually good at writing HTML however one factor I’ve seen is that generally the formatting might be off. Strive utilizing Claude Design or guaranteeing that Claude double checks there isn’t a misalignment or overlapping textual content within the immediate.
-
If you’re in Claude Design, as soon as it produces the output there’s a little button that claims “Edit” within the bar within the prime proper. This lets you manually edit something Design created. So if there’s minor textual content errors or one thing that is simpler to simply take away your self, use this as a substitute of attempting to immediate and clarify to Claude what you need mounted
-
A README is barely as correct because the code that Claude reads with a view to write it.















