File tree Expand file tree Collapse file tree
components/notebooks/dataset/tabs Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,7 +20,10 @@ const CorrelationsTab = ({ correlations }) => {
2020 Object . entries ( corrs ) . forEach ( ( [ col2 , value ] ) => {
2121 if ( col1 < col2 ) {
2222 // Avoid duplicates
23- corrData . push ( { pair : `${ col1 } - ${ col2 } ` , correlation : value } ) ;
23+ corrData . push ( {
24+ pair : `${ col1 } - ${ col2 } ` ,
25+ correlation : value ,
26+ } ) ;
2427 }
2528 } ) ;
2629 } ) ;
@@ -48,7 +51,11 @@ const CorrelationsTab = ({ correlations }) => {
4851 } }
4952 labelStyle = { { color : "#ffffff" } }
5053 />
51- < Bar dataKey = "correlation" fill = "#3b82f6" >
54+ < Bar
55+ dataKey = "correlation"
56+ name = { t ( "datasets:label.correlation" ) }
57+ fill = "#3b82f6"
58+ >
5259 { corrData . map ( ( entry , index ) => (
5360 < Cell
5461 key = { index }
Original file line number Diff line number Diff line change 9191 "constantColumns" : " Constant Columns" ,
9292 "convert" : " Convert" ,
9393 "converter" : " Converter" ,
94+ "correlation" : " Correlation" ,
9495 "correlationAnalysis" : " Correlation Analysis" ,
9596 "correlations" : " Correlations" ,
9697 "createNewNotebook" : " Create a New Notebook" ,
Original file line number Diff line number Diff line change 9393 "constantColumns" : " Columnas Constantes" ,
9494 "convert" : " Convertir" ,
9595 "converter" : " Convertidor" ,
96+ "correlation" : " Correlación" ,
9697 "correlationAnalysis" : " Análisis de Correlación" ,
9798 "correlations" : " Correlaciones" ,
9899 "createNewNotebook" : " Crear un Nuevo Cuaderno" ,
You can’t perform that action at this time.
0 commit comments