qdesc 0.1.6.2__tar.gz → 0.1.7.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of qdesc might be problematic. Click here for more details.
- {qdesc-0.1.6.2 → qdesc-0.1.7.1}/PKG-INFO +1 -1
- {qdesc-0.1.6.2 → qdesc-0.1.7.1}/qdesc/__init__.py +2 -1
- {qdesc-0.1.6.2 → qdesc-0.1.7.1}/qdesc.egg-info/PKG-INFO +1 -1
- {qdesc-0.1.6.2 → qdesc-0.1.7.1}/setup.py +1 -1
- {qdesc-0.1.6.2 → qdesc-0.1.7.1}/LICENCE.txt +0 -0
- {qdesc-0.1.6.2 → qdesc-0.1.7.1}/README.md +0 -0
- {qdesc-0.1.6.2 → qdesc-0.1.7.1}/qdesc.egg-info/SOURCES.txt +0 -0
- {qdesc-0.1.6.2 → qdesc-0.1.7.1}/qdesc.egg-info/dependency_links.txt +0 -0
- {qdesc-0.1.6.2 → qdesc-0.1.7.1}/qdesc.egg-info/top_level.txt +0 -0
- {qdesc-0.1.6.2 → qdesc-0.1.7.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
def desc(df)
|
|
3
|
+
def desc(df):
|
|
4
4
|
import pandas as pd
|
|
5
5
|
import numpy as np
|
|
6
6
|
from scipy.stats import anderson
|
|
@@ -72,6 +72,7 @@ def freqdist_a(df, ascending=False):
|
|
|
72
72
|
return final_df
|
|
73
73
|
|
|
74
74
|
def clean_sheet_name(name):
|
|
75
|
+
import re
|
|
75
76
|
# Remove invalid characters
|
|
76
77
|
name = re.sub(r'[:\\/?*\[\]]', '', name)
|
|
77
78
|
# Limit to 31 characters
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|