From 2cab40e7c43c8043b09c87ca3e9bb8ccb1828969 Mon Sep 17 00:00:00 2001 From: Angus Hollands Date: Thu, 27 Jun 2024 14:52:37 +0100 Subject: [PATCH] docs: set printoptions to disable modern scalar printing (#613) --- docs/render/glue.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/render/glue.md b/docs/render/glue.md index d90f8f23..66caeeb6 100644 --- a/docs/render/glue.md +++ b/docs/render/glue.md @@ -54,6 +54,8 @@ We'll hide most of this process below, to focus on the glueing part. # Simulate some data and bootstrap the mean of the data import numpy as np +np.set_printoptions(legacy="1.25") + import pandas as pd import matplotlib.pyplot as plt