Why doesn’t “System.out.println” work in Android?

Correction: On the emulator and most devices System.out.println gets redirected to LogCat and printed using Log.i(). This may not be true on very old or custom Android versions. Original: There is no console to send the messages to so the System.out.println messages get lost. In the same way this happens when you run a “traditional” … Read more

Function to calculate R2 (R-squared) in R

You need a little statistical knowledge to see this. R squared between two vectors is just the square of their correlation. So you can define you function as: Add New Post about:blankImage: Change block type or styleChange alignmentAdd titleFunction to calculate R2 (R-squared) in R You need a little statistical knowledge to see this. R … Read more