Skip to content
This repository was archived by the owner on Mar 14, 2025. It is now read-only.

[Bug] #285

Closed
P3p3bolas opened this issue Jan 7, 2025 · 3 comments
Closed

[Bug] #285

P3p3bolas opened this issue Jan 7, 2025 · 3 comments
Labels
bug Something isn't working

Comments

@P3p3bolas
Copy link

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' }} />








);
}

@P3p3bolas P3p3bolas added the bug Something isn't working label Jan 7, 2025
@3oooo0
Copy link

3oooo0 commented Jan 8, 2025

@johnpapa
2025-01-08.txt

@3oooo0
Copy link

3oooo0 commented Jan 8, 2025

@johnpapa 2025-01-08.txt

@Azanetheboas

This comment has been minimized.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Something isn't working
Development

No branches or pull requests

5 participants
@chriswblake @3oooo0 @P3p3bolas @Azanetheboas and others