Well, it is done.

Using:

ma = "malignant"
pre = "prediction"
tp_test = test_transformed.filter((col(ma) == "1") & (col(pre) ==
"1")).count()

On Mon, Jan 28, 2019 at 5:41 PM Aakash Basu <aakash.spark....@gmail.com>
wrote:

> Hi,
>
> How to do this when the column (malignant and prediction) names are stored
> in two respective variables?
>
>
> tp = test_transformed[(test_transformed.malignant == 1) &
> (test_transformed.prediction == 1)].count()
>
>
>
> Thanks,
> Aakash.
>

Reply via email to