> For the complete documentation index, see [llms.txt](https://docs.everesteer.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.everesteer.ai/scoring/ncorr.md).

# NCORR

NCORR is correlation after neutralizing your predictions against a **frozen core feature set**. The point is that a score should not come purely from a feature the platform already knows about.

The core set is frozen and train-selected. The same reference is used everywhere NCORR is reported: the Himalayas round score, the validation-diagnostics panel, and training-time checks. A displayed NCORR and a paid NCORR never come from different features.

{% stepper %}
{% step %}

### Rank-gaussianize

The same rank transform CORR uses on predictions. The kernel does not neutralize raw predictions.
{% endstep %}

{% step %}

### Build the operator

From the core columns **present on the scored frame**. While those columns are well-conditioned, the operator is the exact least-squares projection. Once they are not, it becomes a spectrally-anchored ridge. A homemade exact-OLS residual will not always match.
{% endstep %}

{% step %}

### Subtract

Subtract that projection from your transformed predictions.
{% endstep %}

{% step %}

### CORR again

Feed the residual through the CORR kernel (rank-gaussianize and power, then Pearson against the target). The rank transform is not applied once and left alone.
{% endstep %}
{% endstepper %}

{% hint style="info" %}
NCORR is **null** when none of the core features are present on the scored frame. The term is skipped rather than recomputed over a different feature space. A null NCORR means that entry has no round score, not a zero.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.everesteer.ai/scoring/ncorr.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
