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我运行上述代码并获得以下错误消息。不知道到底出了什么问题。实际上,我一点也不知道。谁能看看这个。


https://stackoverflow.com/questions/73514532
复制相似问题