{{-- analysis/notes.blade.php --}} {{-- Note distribution per product with significance vs norme --}} {{-- Legacy: show_table_StudyQuery_notes() --}} @extends('layouts.app') @section('content') @include('components.analysis-nav', ['activeTab' => 'notes']) @include('components.analysis-filter', ['formAction' => route('kms.study.notes', $study->Id)]) {{-- Header --}} @if($normeId) @endif {{-- Data rows --}} @foreach($notes['products'] as $prodId => $row) @include('components.row', ['index' => $loop->index]) @if($normeId) @endif @endforeach
Produit N Moyenne Ecart-type Min Max Bas % Marais % Top %Signif.
{{ $row['product']['Name'] ?? "Produit {$prodId}" }} {{ $row['n'] }} @include('components.cell', ['type' => 'TWO_DECI', 'value' => $row['avg']]) @include('components.cell', ['type' => 'TWO_DECI', 'value' => $row['std']]) {{ $row['min'] }} {{ $row['max'] }} {{ $row['low']['pct'] }}% {{ $row['marais']['pct'] }}% {{ $row['top']['pct'] }}%{{ $row['significance']?->value ?? '' }}
{{-- Scale legend --}}

Echelle : {{ $notes['scale']->min() }} à {{ $notes['scale']->max() }} | Bas : ≤{{ $notes['scale']->lowMax() }} | Marais : {{ $notes['scale']->lowMax() + 1 }}-{{ $notes['scale']->maraisMax() }} | Top : ≥{{ $notes['scale']->topBoxThreshold() }}

@endsection