You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 14, 2025. It is now read-only.
import React from 'react';
import { LineChart, Line, XAxis, YAxis, CartesianGrid, Tooltip, Legend } from 'recharts';
const data = [
{ tiempo: 0, convergente: 65, divergente: 45, asimilador: 55, acomodador: 50 },
{ tiempo: 1, convergente: 70, divergente: 48, asimilador: 58, acomodador: 52 },
{ tiempo: 2, convergente: 75, divergente: 52, asimilador: 62, acomodador: 55 },
{ tiempo: 3, convergente: 78, divergente: 55, asimilador: 65, acomodador: 58 },
{ tiempo: 4, convergente: 82, divergente: 58, asimilador: 68, acomodador: 60 }
];
export default function RegressionAnalysis() {
return (
<LineChart width={600} height={400} data={data} margin={{ top: 20, right: 30, left: 20, bottom: 10 }}>
<XAxis dataKey="tiempo" label={{ value: 'Tiempo (meses)', position: 'bottom' }} />
<YAxis label={{ value: 'Rendimiento Académico', angle: -90, position: 'left' }} />
);
}
The text was updated successfully, but these errors were encountered: