RSS Amplifier

Shorts · Sep 10, 2015

Data Science SQL

0
Sign in to vote or save

This site does not allow itself to be embedded. You can still read it on the original site — the toolbar below keeps your place in the directory.

Root mean squared error SELECT SQRT(AVG(POWER(y - y_pred, 2))) AS rmse FROM ... Mean absolute error SELECT AVG(ABS(y - y_pred)) AS mae FROM ... Mean error SELECT AVG(y_pred - y) AS me FROM ... Median - get it here SELECT MEDIAN(y) FROM ...

Read on ankane.org

Comments

Nothing yet. Say the first thing.

    Sign in to join the conversation.