MCPcopy Create free account

hub / github.com/anysphere/gpt-4-for-code / functions

Functions57 in github.com/anysphere/gpt-4-for-code

↓ 3 callersMethodfilter_by_columns
Filters the data to only include the specified columns. Args: columns_to_filter: List of column names to filter by.
python-to-c++/py/csvinteresting.py:38
↓ 2 callersMethodsplit
python-to-c++/cc/csvinteresting.cc:188
↓ 1 callersMethodgroup_by_column_and_filter
Groups the data by the specified column, filters the columns, and aggregates each group independently. Creates the following files:
python-to-c++/py/csvinteresting.py:136
↓ 1 callersMethodgroup_by_column_and_filter
python-to-c++/cc/csvinteresting-post-gpt-4.cc:190
↓ 1 callersMethodprocess_csv
(self)
python-to-c++/py/csvinteresting.py:18
MethodCSVReader
python-to-c++/cc/csvinteresting-post-gpt-4.cc:12
MethodCSVReader
python-to-c++/cc/csvinteresting.cc:12
Method__init__
(self, file_path)
python-to-c++/py/csvinteresting.py:6
Methodadd_column
Adds a new column with the specified name and fills it with the default value.
python-to-c++/py/csvinteresting.py:115
Methodadd_column
python-to-c++/cc/csvinteresting-post-gpt-4.cc:161
Methodadd_column
python-to-c++/cc/csvinteresting.cc:156
Functionconcat_N_lsb_bits
raw-model-fails-to-find-memory-bug/utils.hpp:45
Methodcontains_filter
filter out the column that contains the search term
python-to-c++/py/csvinteresting.py:66
Methodcontains_filter
@brief filters by the column. this mutates the column headings and data. so be careful. this might lead to search bugs. @param search_term @param incl
python-to-c++/cc/csvinteresting-post-gpt-4.cc:63
Methodcontains_filter
@brief filters by the column. this mutates the column headings and data. so be careful. this might lead to search bugs. @param search_term @param incl
python-to-c++/cc/csvinteresting.cc:58
Methoddelete_column
Deletes the specified column.
python-to-c++/py/csvinteresting.py:121
Methoddelete_column
python-to-c++/cc/csvinteresting-post-gpt-4.cc:168
Methoddelete_column
python-to-c++/cc/csvinteresting.cc:163
Methodfilter_by_columns
python-to-c++/cc/csvinteresting-post-gpt-4.cc:41
Methodfilter_by_columns
python-to-c++/cc/csvinteresting.cc:36
Methodget_column
Returns a list of values from the specified column.
python-to-c++/py/csvinteresting.py:93
Methodget_column
python-to-c++/cc/csvinteresting-post-gpt-4.cc:103
Methodget_column
python-to-c++/cc/csvinteresting.cc:98
Functionget_submatrix_as_uint64s
raw-model-fails-to-find-memory-bug/utils-bug.cc:17
Functionget_submatrix_as_uint64s
raw-model-fails-to-find-memory-bug/utils.cc:17
Methodjoin
python-to-c++/cc/csvinteresting-post-gpt-4.cc:263
Methodjoin
python-to-c++/cc/csvinteresting.cc:206
Functionmain
python-to-c++/cc/csvinteresting-post-gpt-4.cc:276
Functionmain
python-to-c++/cc/csvinteresting.cc:219
Functionmain
()
rocksb-cli/src/main.rs:6
Functionmain
()
bazel/src/lib.rs:11
Methodprefix_match_filter
Filters the data to only include columns that start with the specified prefix.
python-to-c++/py/csvinteresting.py:74
Methodprefix_match_filter
@brief filters by the column. this mutates the column headings and data. so be careful. this might lead to search bugs. @param prefix @param include_c
python-to-c++/cc/csvinteresting-post-gpt-4.cc:77
Methodprefix_match_filter
@brief filters by the column. this mutates the column headings and data. so be careful. this might lead to search bugs. @param prefix @param include_c
python-to-c++/cc/csvinteresting.cc:72
Methodprocess_csv
python-to-c++/cc/csvinteresting-post-gpt-4.cc:21
Methodprocess_csv
python-to-c++/cc/csvinteresting.cc:16
Methodregex_filter
Filters the data to only include columns that match the regex pattern.
python-to-c++/py/csvinteresting.py:82
Methodregex_filter
@brief filters by the column. this mutates the column headings and data. so be careful. this might lead to search bugs. @param pattern @param include_
python-to-c++/cc/csvinteresting-post-gpt-4.cc:91
Methodregex_filter
@brief filters by the column. this mutates the column headings and data. so be careful. this might lead to search bugs. @param pattern @param include_
python-to-c++/cc/csvinteresting.cc:86
Methodrename_column
Renames the specified column.
python-to-c++/py/csvinteresting.py:128
Methodrename_column
python-to-c++/cc/csvinteresting-post-gpt-4.cc:180
Methodrename_column
python-to-c++/cc/csvinteresting.cc:175
Methodreplace_column_values_regex
Replaces all values in the specified column that match the regex pattern with new_value.
python-to-c++/py/csvinteresting.py:108
Methodreplace_column_values_regex
python-to-c++/cc/csvinteresting-post-gpt-4.cc:147
Methodreplace_column_values_regex
python-to-c++/cc/csvinteresting.cc:142
Methodsearch_column
Returns rows where the specified column contains the search term.
python-to-c++/py/csvinteresting.py:98
Methodsearch_column
python-to-c++/cc/csvinteresting-post-gpt-4.cc:116
Methodsearch_column
python-to-c++/cc/csvinteresting.cc:111
Methodsearch_column_regex
Returns rows where the specified column matches the regex pattern.
python-to-c++/py/csvinteresting.py:103
Methodsearch_column_regex
python-to-c++/cc/csvinteresting-post-gpt-4.cc:131
Methodsearch_column_regex
python-to-c++/cc/csvinteresting.cc:126
Methodsplit
python-to-c++/cc/csvinteresting-post-gpt-4.cc:245
Methodsummary
(self)
python-to-c++/py/csvinteresting.py:25
Methodsummary
python-to-c++/cc/csvinteresting-post-gpt-4.cc:32
Methodsummary
python-to-c++/cc/csvinteresting.cc:27
Functiontest_parse_javascript
()
bazel/src/lib.rs:30
Methodwrite_csv
python-to-c++/cc/csvinteresting-post-gpt-4.cc:229