@@ -10074,10 +10074,10 @@ def describe_1d(data):
10074
10074
Percentage change in French franc, Deutsche Mark, and Italian lira from
10075
10075
1980-01-01 to 1980-03-01.
10076
10076
10077
- >>> df = pd.DataFrame({
10077
+ >>> df = pd.DataFrame({{
10078
10078
... 'FR': [4.0405, 4.0963, 4.3149],
10079
10079
... 'GR': [1.7246, 1.7482, 1.8519],
10080
- ... 'IT': [804.74, 810.01, 860.13]},
10080
+ ... 'IT': [804.74, 810.01, 860.13]}} ,
10081
10081
... index=['1980-01-01', '1980-02-01', '1980-03-01'])
10082
10082
>>> df
10083
10083
FR GR IT
@@ -10094,10 +10094,10 @@ def describe_1d(data):
10094
10094
Percentage of change in GOOG and APPL stock volume. Shows computing
10095
10095
the percentage change between columns.
10096
10096
10097
- >>> df = pd.DataFrame({
10097
+ >>> df = pd.DataFrame({{
10098
10098
... '2016': [1769950, 30586265],
10099
10099
... '2015': [1500923, 40912316],
10100
- ... '2014': [1371819, 41403351]},
10100
+ ... '2014': [1371819, 41403351]}} ,
10101
10101
... index=['GOOG', 'APPL'])
10102
10102
>>> df
10103
10103
2016 2015 2014
0 commit comments