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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qdesc
3
- Version: 0.1.6.2
3
+ Version: 0.1.7.1
4
4
  Summary: Quick and Easy way to do descriptive analysis.
5
5
  Author: Paolo Hilado
6
6
  Author-email: datasciencepgh@proton.me
@@ -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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qdesc
3
- Version: 0.1.6.2
3
+ Version: 0.1.7.1
4
4
  Summary: Quick and Easy way to do descriptive analysis.
5
5
  Author: Paolo Hilado
6
6
  Author-email: datasciencepgh@proton.me
@@ -7,7 +7,7 @@ long_description = (this_directory / "README.md").read_text()
7
7
 
8
8
  setup(
9
9
  name='qdesc',
10
- version='0.1.6.2',
10
+ version='0.1.7.1',
11
11
  packages=find_packages(),
12
12
  install_requires=[
13
13
  # List your dependencies here, e.g., pandas if your function requires it
File without changes
File without changes
File without changes