Skip to content

Commit b3c12b1

Browse files
committed
REF: broke apart sparse.py, created sparse subpackage
1 parent 62ea0cf commit b3c12b1

File tree

8 files changed

+1918
-1877
lines changed

8 files changed

+1918
-1877
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
*.pyc
2+
*.pyo
23
*.swp
34
build
45
dist

pandas/core/panel.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1010,9 +1010,6 @@ def std(self, axis='major', skipna=True):
10101010

10111011
_add_docs(std, 'unbiased standard deviation', 'stdev')
10121012

1013-
def skew(self, axis='major', skipna=True):
1014-
raise NotImplementedError
1015-
10161013
def prod(self, axis='major', skipna=True):
10171014
return self._array_method(np.prod, axis=axis, fill_value=1,
10181015
skipna=skipna)

0 commit comments

Comments
 (0)