We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 (
The text was updated successfully, but these errors were encountered:
@johnpapa 2025-01-08.txt
Sorry, something went wrong.
No branches or pull requests
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: