loan_amnt_box = data.hvplot.box(
y='loan_amnt', subplots=True, by='loan_status', width=300, height=350,
title="Loan Status by Loan Amount ", xlabel='Loan Status', ylabel='Loan Amount'
)
installment_box = data.hvplot.box(
y='installment', subplots=True, by='loan_status', width=300, height=350,
title="Loan Status by Installment", xlabel='Loan Status', ylabel='Installment'
)
loan_amnt_box + installment_box
I run the above code and got the following error messages. Couldn't figure out what went wrong. Actually, I had no clue at all. Can anyone please take a look at this.