# Using a 3D view to display the 3 PC's
import plotly.express as px
fig = px.scatter_3d(clustered_df, x='PC 1', y='PC 2', z='PC 3',
color='Class',
hover_name='CoinName'
)
fig.show()
# Table with tradable cryptos
clustered_df.hvplot.table(["CoinName", "Algorithm", "ProofType", "MaxSupply", "TotalCoinsMined", "Class"])