We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09e6754 commit 50e23e7Copy full SHA for 50e23e7
doc/source/user_guide/sparse.rst
@@ -40,8 +40,8 @@ and in the Python interpreter.
40
41
.. ipython:: python
42
43
- 'dense : {:0.2f} bytes'.format(df.memory_usage().sum() / 1e3)
44
- 'sparse: {:0.2f} bytes'.format(sdf.memory_usage().sum() / 1e3)
+ f'dense: {df.memory_usage().sum()} bytes'
+ f'sparse: {sdf.memory_usage().sum()} bytes'
45
46
Functionally, their behavior should be nearly
47
identical to their dense counterparts.
0 commit comments