Description Usage Arguments Details
Useful for EDA plotting of ml_on large Spark/Hive tables, it is designed to resemble the ggcorplot2() function in native R.
1 | spark_plot_corr(sparklyr_corr_matrix)
|
sparklyr_corr_matrix |
is the sparklyr ml_corr() output you will pass to the function. |
Example corrplot using sparklyR
spark_cars = copy_to(sc, mtcars)
s_corr_mat = ml_corr(spark_cars, columns=colnames(spark_cars), method="pearson")
spark_plot_corr(s_corr_mat)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.