Hi, I created a workbook for academic purposes and had completed it... from one moment to the next all the plot cells of charts (and only those) started returning the following error and I really don't know how to solve it by today.
Failed to store the result. Try rerunning the command.
Failed to upload command result to DBFS. Error message: Status code: 301 Moved Permanently, Error message: <?xml version="1.0" encoding="UTF-8"?> <Error><Code>PermanentRedirect</Code><Message>The bucket you are attempting to access must be addressed using the specified endpoint. Please send all future requests to this endpoint.</Message><Endpoint>command-results.s3.amazonaws.com</Endpoint><Bucket>command-results</Bucket><RequestId>SRS095EJC72JC5VA</RequestId><HostId>VfYrUXXVnCpRPo99oSUf0Hgjj2Xv646dzJzzNa5Zr6QTLKimREWiwKOmXvXenPRISFQbkUHXwxI=</HostId></Error>
Here an example where I get the error
# Compute the correlation matrix
correlation_matrix = data.corr()
# Set up the matplotlib figure
plt.figure(figsize=(14, 10))
# Draw the heatmap with the mask and correct aspect ratio
sns.heatmap(correlation_matrix, annot=True, fmt=".2f", cmap='coolwarm',
cbar_kws={"shrink": .8}, linewidths=0.5, linecolor='black')
# Add a title
plt.title('Correlation Matrix', fontsize=16)
# Adjust the font size for better readability
plt.xticks(fontsize=12, rotation=45, ha='right')
plt.yticks(fontsize=12)
# Show the plot
plt.show()