@@ -16,10 +16,10 @@ def filter_after_date(cls, dataframe: pd.DataFrame, column_name: str = 'systime'
16
16
Filters the DataFrame to include only rows after the specified date.
17
17
18
18
Args:
19
- - date (str): The cutoff date in 'YYYY-MM-DD' format.
19
+ date (str): The cutoff date in 'YYYY-MM-DD' format.
20
20
21
21
Returns:
22
- - pd.DataFrame: A DataFrame containing rows where the 'systime' is after the specified date.
22
+ pd.DataFrame: A DataFrame containing rows where the 'systime' is after the specified date.
23
23
24
24
Example:
25
25
--------
@@ -34,10 +34,10 @@ def filter_before_date(cls, dataframe: pd.DataFrame, column_name: str = 'systime
34
34
Filters the DataFrame to include only rows before the specified date.
35
35
36
36
Args:
37
- - date (str): The cutoff date in 'YYYY-MM-DD' format.
37
+ date (str): The cutoff date in 'YYYY-MM-DD' format.
38
38
39
39
Returns:
40
- - pd.DataFrame: A DataFrame containing rows where the 'systime' is before the specified date.
40
+ pd.DataFrame: A DataFrame containing rows where the 'systime' is before the specified date.
41
41
42
42
Example:
43
43
--------
@@ -52,11 +52,11 @@ def filter_between_dates(cls, dataframe: pd.DataFrame, column_name: str = 'systi
52
52
Filters the DataFrame to include only rows between the specified start and end dates.
53
53
54
54
Args:
55
- - start_date (str): The start date of the interval in 'YYYY-MM-DD' format.
56
- - end_date (str): The end date of the interval in 'YYYY-MM-DD' format.
55
+ start_date (str): The start date of the interval in 'YYYY-MM-DD' format.
56
+ end_date (str): The end date of the interval in 'YYYY-MM-DD' format.
57
57
58
58
Returns:
59
- - pd.DataFrame: A DataFrame containing rows where the 'systime' is between the specified dates.
59
+ pd.DataFrame: A DataFrame containing rows where the 'systime' is between the specified dates.
60
60
61
61
Example:
62
62
--------
@@ -72,10 +72,10 @@ def filter_after_datetime(cls, dataframe: pd.DataFrame, column_name: str = 'syst
72
72
Filters the DataFrame to include only rows after the specified datetime.
73
73
74
74
Args:
75
- - datetime (str): The cutoff datetime in 'YYYY-MM-DD HH:MM:SS' format.
75
+ datetime (str): The cutoff datetime in 'YYYY-MM-DD HH:MM:SS' format.
76
76
77
77
Returns:
78
- - pd.DataFrame: A DataFrame containing rows where the 'systime' is after the specified datetime.
78
+ pd.DataFrame: A DataFrame containing rows where the 'systime' is after the specified datetime.
79
79
80
80
Example:
81
81
--------
@@ -90,10 +90,10 @@ def filter_before_datetime(cls, dataframe: pd.DataFrame, column_name: str = 'sys
90
90
Filters the DataFrame to include only rows before the specified datetime.
91
91
92
92
Args:
93
- - datetime (str): The cutoff datetime in 'YYYY-MM-DD HH:MM:SS' format.
93
+ datetime (str): The cutoff datetime in 'YYYY-MM-DD HH:MM:SS' format.
94
94
95
95
Returns:
96
- - pd.DataFrame: A DataFrame containing rows where the 'systime' is before the specified datetime.
96
+ pd.DataFrame: A DataFrame containing rows where the 'systime' is before the specified datetime.
97
97
98
98
Example:
99
99
--------
@@ -108,11 +108,11 @@ def filter_between_datetimes(cls, dataframe: pd.DataFrame, column_name: str = 's
108
108
Filters the DataFrame to include only rows between the specified start and end datetimes.
109
109
110
110
Args:
111
- - start_datetime (str): The start datetime of the interval in 'YYYY-MM-DD HH:MM:SS' format.
112
- - end_datetime (str): The end datetime of the interval in 'YYYY-MM-DD HH:MM:SS' format.
111
+ start_datetime (str): The start datetime of the interval in 'YYYY-MM-DD HH:MM:SS' format.
112
+ end_datetime (str): The end datetime of the interval in 'YYYY-MM-DD HH:MM:SS' format.
113
113
114
114
Returns:
115
- - pd.DataFrame: A DataFrame containing rows where the 'systime' is between the specified datetimes.
115
+ pd.DataFrame: A DataFrame containing rows where the 'systime' is between the specified datetimes.
116
116
117
117
Example:
118
118
--------
0 commit comments