Skip to content

Commit a50103d

Browse files
author
minjk-bl
committed
Fix typo on Evaluation app
1 parent 977e8be commit a50103d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

visualpython/js/m_ml/evaluation.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,8 +276,8 @@ define([
276276
// }
277277
if (r_squared) {
278278
code = new com_String();
279-
code.appendLine("# R square");
280-
code.appendFormat("print('R square: {}'.format(metrics.r2_score({0}, {1})))", targetData, predictData);
279+
code.appendLine("# R squared");
280+
code.appendFormat("print('R squared: {}'.format(metrics.r2_score({0}, {1})))", targetData, predictData);
281281
codeCells.push(code.toString());
282282
}
283283
if (mae) {

0 commit comments

Comments
 (0)