@@ -10065,10 +10065,10 @@ def describe_1d(data):
10065
10065
Percentage change in French franc, Deutsche Mark, and Italian lira from
10066
10066
1980-01-01 to 1980-03-01.
10067
10067
10068
- >>> df = pd.DataFrame({
10068
+ >>> df = pd.DataFrame({{
10069
10069
... 'FR': [4.0405, 4.0963, 4.3149],
10070
10070
... 'GR': [1.7246, 1.7482, 1.8519],
10071
- ... 'IT': [804.74, 810.01, 860.13]},
10071
+ ... 'IT': [804.74, 810.01, 860.13]}} ,
10072
10072
... index=['1980-01-01', '1980-02-01', '1980-03-01'])
10073
10073
>>> df
10074
10074
FR GR IT
@@ -10085,10 +10085,10 @@ def describe_1d(data):
10085
10085
Percentage of change in GOOG and APPL stock volume. Shows computing
10086
10086
the percentage change between columns.
10087
10087
10088
- >>> df = pd.DataFrame({
10088
+ >>> df = pd.DataFrame({{
10089
10089
... '2016': [1769950, 30586265],
10090
10090
... '2015': [1500923, 40912316],
10091
- ... '2014': [1371819, 41403351]},
10091
+ ... '2014': [1371819, 41403351]}} ,
10092
10092
... index=['GOOG', 'APPL'])
10093
10093
>>> df
10094
10094
2016 2015 2014
0 commit comments