@extends('layouts.app') @section('title', 'Weather Correlation Analysis - Blackberry Farm Analytics') @section('content')
Analyze correlations between weather conditions and plant health & growth
Data-driven insights for optimizing agricultural practices
Temperature vs Growth Correlation
{{ $correlations['temperature_correlation']['impact_on_yield'] ?? 'Analysis in development' }}Rainfall vs Growth Correlation
{{ $correlations['rainfall_correlation']['impact_on_yield'] ?? 'Analysis in development' }}Humidity vs Health Correlation
@if(isset($correlations['humidity_correlation']['correlation_coefficient']) && is_numeric($correlations['humidity_correlation']['correlation_coefficient'])) @if($correlations['humidity_correlation']['correlation_coefficient'] > 0.7) Strong positive correlation @elseif($correlations['humidity_correlation']['correlation_coefficient'] > 0.3) Moderate correlation @elseif($correlations['humidity_correlation']['correlation_coefficient'] > -0.3) Weak correlation @else Negative correlation @endif @endifNote: Weather correlation analysis is a developing feature. More sophisticated statistical correlations and predictive models will be added as more data is collected over time. Current analysis provides basic insights into weather-plant relationships.