Configuration of PyCharm's Internal Browser for Jupyter Notebooks

I am getting this Warning

I am guessing something changed , because in the past that thing ran OK.

And now I want to see the : Configuration of PyCharm's Internal Browser for Jupyter Notebooks.

And not happens all the time only when I ran:

Pls your guide

def PlotCluster(x_column, y_column, df_cluster_centers,df):

    import plotly.express as px

        

    fig = px.scatter(df, x=x_column, y=y_column, color="cluster",

                     title=f"K-means Clustering con 3 Clusters sobre {x_column} y {y_column}")

    fig.add_trace(go.Scatter(

        x=df_cluster_centers[x_column],

        y=df_cluster_centers[y_column],

        mode='markers',

        marker=dict(

            size=10,

            symbol='x',  # Use 'x' as the marker symbol for cluster centers

            color='white',  # Color of the cluster centers

            line=dict(width=10, color='black')  # Outline color of the markers

        ),

        name='Cluster Centers'

    ))

    fig.update_traces(showlegend=True)

    fig.show()
0

请先登录再写评论。