-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #337 from ksneab7/bug_fix_for_column_header_issue
fix for column name exclusion bug
- Loading branch information
Showing
3 changed files
with
111 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
"""Contains a random Null generator.""" | ||
import numpy as np | ||
|
||
|
||
def null_generation(num_rows: int = 1) -> np.array: | ||
""" | ||
Randomly generates an array of integers between the given min and max values. | ||
:param num_rows: the number of rows in np array generated | ||
:type num_rows: int, optional | ||
:return: np array of null values | ||
""" | ||
return np.array([None] * num_rows) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters