Actualiser EXO4/README.md

This commit is contained in:
Marco ORFAO 2024-06-17 01:02:50 +02:00
parent 245fea917a
commit e3c3331d3e

View File

@ -34,6 +34,8 @@ plot2d(X,Y,-1);
y_reg = a*X+b; y_reg = a*X+b;
plot2d(X,y_reg,5); plot2d(X,y_reg,5);
corrcoef(X,Y) corrcoef(X,Y)
xlabel('Salaires');
ylabel('Ages');
``` ```
**Résultat :** **Résultat :**
@ -57,6 +59,8 @@ plot2d(X,Y,-1);
y_reg = a*X+b; y_reg = a*X+b;
plot2d(X,y_reg,5); plot2d(X,y_reg,5);
corrcoef(X,Y) corrcoef(X,Y)
xlabel('Salaires');
ylabel('Expérience');
``` ```
**Résultat :** **Résultat :**