content stringlengths 1 103k ⌀ | path stringlengths 8 216 | filename stringlengths 2 179 | language stringclasses 15
values | size_bytes int64 2 189k | quality_score float64 0.5 0.95 | complexity float64 0 1 | documentation_ratio float64 0 1 | repository stringclasses 5
values | stars int64 0 1k | created_date stringdate 2023-07-10 19:21:08 2025-07-09 19:11:45 | license stringclasses 4
values | is_test bool 2
classes | file_hash stringlengths 32 32 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
import numpy as np\nimport pytest\n\nimport pandas as pd\nimport pandas._testing as tm\n\n\ndef test_data_frame_value_counts_unsorted():\n df = pd.DataFrame(\n {"num_legs": [2, 4, 4, 6], "num_wings": [2, 0, 0, 0]},\n index=["falcon", "dog", "cat", "ant"],\n )\n\n result = df.value_counts(sort=False)\n expected = pd.Series(\n data=[1, 2, 1],\n index=pd.MultiIndex.from_arrays(\n [(2, 4, 6), (2, 0, 0)], names=["num_legs", "num_wings"]\n ),\n name="count",\n )\n\n tm.assert_series_equal(result, expected)\n\n\ndef test_data_frame_value_counts_ascending():\n df = pd.DataFrame(\n {"num_legs": [2, 4, 4, 6], "num_wings": [2, 0, 0, 0]},\n index=["falcon", "dog", "cat", "ant"],\n )\n\n result = df.value_counts(ascending=True)\n expected = pd.Series(\n data=[1, 1, 2],\n index=pd.MultiIndex.from_arrays(\n [(2, 6, 4), (2, 0, 0)], names=["num_legs", "num_wings"]\n ),\n name="count",\n )\n\n tm.assert_series_equal(result, expected)\n\n\ndef test_data_frame_value_counts_default():\n df = pd.DataFrame(\n {"num_legs": [2, 4, 4, 6], "num_wings": [2, 0, 0, 0]},\n index=["falcon", "dog", "cat", "ant"],\n )\n\n result = df.value_counts()\n expected = pd.Series(\n data=[2, 1, 1],\n index=pd.MultiIndex.from_arrays(\n [(4, 2, 6), (0, 2, 0)], names=["num_legs", "num_wings"]\n ),\n name="count",\n )\n\n tm.assert_series_equal(result, expected)\n\n\ndef test_data_frame_value_counts_normalize():\n df = pd.DataFrame(\n {"num_legs": [2, 4, 4, 6], "num_wings": [2, 0, 0, 0]},\n index=["falcon", "dog", "cat", "ant"],\n )\n\n result = df.value_counts(normalize=True)\n expected = pd.Series(\n data=[0.5, 0.25, 0.25],\n index=pd.MultiIndex.from_arrays(\n [(4, 2, 6), (0, 2, 0)], names=["num_legs", "num_wings"]\n ),\n name="proportion",\n )\n\n tm.assert_series_equal(result, expected)\n\n\ndef test_data_frame_value_counts_single_col_default():\n df = pd.DataFrame({"num_legs": [2, 4, 4, 6]})\n\n result = df.value_counts()\n expected = pd.Series(\n data=[2, 1, 1],\n index=pd.MultiIndex.from_arrays([[4, 2, 6]], names=["num_legs"]),\n name="count",\n )\n\n tm.assert_series_equal(result, expected)\n\n\ndef test_data_frame_value_counts_empty():\n df_no_cols = pd.DataFrame()\n\n result = df_no_cols.value_counts()\n expected = pd.Series(\n [], dtype=np.int64, name="count", index=np.array([], dtype=np.intp)\n )\n\n tm.assert_series_equal(result, expected)\n\n\ndef test_data_frame_value_counts_empty_normalize():\n df_no_cols = pd.DataFrame()\n\n result = df_no_cols.value_counts(normalize=True)\n expected = pd.Series(\n [], dtype=np.float64, name="proportion", index=np.array([], dtype=np.intp)\n )\n\n tm.assert_series_equal(result, expected)\n\n\ndef test_data_frame_value_counts_dropna_true(nulls_fixture):\n # GH 41334\n df = pd.DataFrame(\n {\n "first_name": ["John", "Anne", "John", "Beth"],\n "middle_name": ["Smith", nulls_fixture, nulls_fixture, "Louise"],\n },\n )\n result = df.value_counts()\n expected = pd.Series(\n data=[1, 1],\n index=pd.MultiIndex.from_arrays(\n [("Beth", "John"), ("Louise", "Smith")], names=["first_name", "middle_name"]\n ),\n name="count",\n )\n\n tm.assert_series_equal(result, expected)\n\n\ndef test_data_frame_value_counts_dropna_false(nulls_fixture):\n # GH 41334\n df = pd.DataFrame(\n {\n "first_name": ["John", "Anne", "John", "Beth"],\n "middle_name": ["Smith", nulls_fixture, nulls_fixture, "Louise"],\n },\n )\n\n result = df.value_counts(dropna=False)\n expected = pd.Series(\n data=[1, 1, 1, 1],\n index=pd.MultiIndex(\n levels=[\n pd.Index(["Anne", "Beth", "John"]),\n pd.Index(["Louise", "Smith", np.nan]),\n ],\n codes=[[0, 1, 2, 2], [2, 0, 1, 2]],\n names=["first_name", "middle_name"],\n ),\n name="count",\n )\n\n tm.assert_series_equal(result, expected)\n\n\n@pytest.mark.parametrize("columns", (["first_name", "middle_name"], [0, 1]))\ndef test_data_frame_value_counts_subset(nulls_fixture, columns):\n # GH 50829\n df = pd.DataFrame(\n {\n columns[0]: ["John", "Anne", "John", "Beth"],\n columns[1]: ["Smith", nulls_fixture, nulls_fixture, "Louise"],\n },\n )\n result = df.value_counts(columns[0])\n expected = pd.Series(\n data=[2, 1, 1],\n index=pd.Index(["John", "Anne", "Beth"], name=columns[0]),\n name="count",\n )\n\n tm.assert_series_equal(result, expected)\n\n\ndef test_value_counts_categorical_future_warning():\n # GH#54775\n df = pd.DataFrame({"a": [1, 2, 3]}, dtype="category")\n result = df.value_counts()\n expected = pd.Series(\n 1,\n index=pd.MultiIndex.from_arrays(\n [pd.Index([1, 2, 3], name="a", dtype="category")]\n ),\n name="count",\n )\n tm.assert_series_equal(result, expected)\n\n\ndef test_value_counts_with_missing_category():\n # GH-54836\n df = pd.DataFrame({"a": pd.Categorical([1, 2, 4], categories=[1, 2, 3, 4])})\n result = df.value_counts()\n expected = pd.Series(\n [1, 1, 1, 0],\n index=pd.MultiIndex.from_arrays(\n [pd.CategoricalIndex([1, 2, 4, 3], categories=[1, 2, 3, 4], name="a")]\n ),\n name="count",\n )\n tm.assert_series_equal(result, expected)\n | .venv\Lib\site-packages\pandas\tests\frame\methods\test_value_counts.py | test_value_counts.py | Python | 5,556 | 0.95 | 0.058537 | 0.030864 | python-kit | 896 | 2025-02-26T15:42:30.702167 | MIT | true | 6ddfd16459c541092ca28a20e488bd14 |
"""\nTest files dedicated to individual (stand-alone) DataFrame methods\n\nIdeally these files/tests should correspond 1-to-1 with tests.series.methods\n\nThese may also present opportunities for sharing/de-duplicating test code.\n"""\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__init__.py | __init__.py | Python | 229 | 0.7 | 0.142857 | 0 | vue-tools | 152 | 2024-03-31T04:57:35.787099 | GPL-3.0 | true | 1a205a3838728bdf1508b212144d5bdc |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_add_prefix_suffix.cpython-313.pyc | test_add_prefix_suffix.cpython-313.pyc | Other | 3,665 | 0.8 | 0.037037 | 0 | awesome-app | 585 | 2023-10-16T15:14:36.899080 | MIT | true | e36221fa2747aafa4acf1af8ad1f0521 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_align.cpython-313.pyc | test_align.cpython-313.pyc | Other | 27,778 | 0.8 | 0.002695 | 0.002747 | vue-tools | 576 | 2023-12-18T05:55:46.256103 | BSD-3-Clause | true | eb5215f3c50de25cf68238d62ede6208 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_asfreq.cpython-313.pyc | test_asfreq.cpython-313.pyc | Other | 14,148 | 0.8 | 0 | 0.006579 | vue-tools | 742 | 2024-06-28T16:15:24.646086 | BSD-3-Clause | true | 8b1a24c9bc5ab0a56fed5dbf0d55d45a |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_asof.cpython-313.pyc | test_asof.cpython-313.pyc | Other | 9,751 | 0.8 | 0.007752 | 0 | node-utils | 828 | 2025-03-13T11:26:46.224030 | BSD-3-Clause | true | 1ebc81c44a2128fc81b52b25dc6002d4 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_assign.cpython-313.pyc | test_assign.cpython-313.pyc | Other | 6,377 | 0.8 | 0 | 0 | react-lib | 15 | 2023-11-07T09:38:54.277212 | BSD-3-Clause | true | d61474331ca858ebe3cfadbdd75e8549 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_astype.cpython-313.pyc | test_astype.cpython-313.pyc | Other | 49,497 | 0.95 | 0.01107 | 0.011494 | awesome-app | 434 | 2024-07-15T06:04:16.336028 | MIT | true | 816d07f651430e7b51a211257cf836c9 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_at_time.cpython-313.pyc | test_at_time.cpython-313.pyc | Other | 9,160 | 0.8 | 0 | 0.038462 | vue-tools | 221 | 2024-04-09T15:29:31.678718 | GPL-3.0 | true | d2682fdc18111cb65efd9fea05899ed7 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_between_time.cpython-313.pyc | test_between_time.cpython-313.pyc | Other | 12,440 | 0.8 | 0.006452 | 0.019608 | vue-tools | 479 | 2023-09-06T11:49:40.068451 | GPL-3.0 | true | a97c59e11a1c0c623b12431836150b4a |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_clip.cpython-313.pyc | test_clip.cpython-313.pyc | Other | 12,245 | 0.8 | 0 | 0 | node-utils | 805 | 2025-07-01T16:34:23.829209 | BSD-3-Clause | true | 53dda31e940533a3d54023ee7d352e97 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_combine.cpython-313.pyc | test_combine.cpython-313.pyc | Other | 2,916 | 0.8 | 0 | 0 | python-kit | 173 | 2024-06-10T17:16:26.151490 | Apache-2.0 | true | 59c55a3867fbd1ff8e23384cb185e0eb |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_combine_first.cpython-313.pyc | test_combine_first.cpython-313.pyc | Other | 29,380 | 0.8 | 0 | 0.003268 | vue-tools | 530 | 2024-01-04T21:57:38.071997 | GPL-3.0 | true | 1d3c96ccb2b006188c86565e8491e34f |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_compare.cpython-313.pyc | test_compare.cpython-313.pyc | Other | 14,550 | 0.8 | 0 | 0 | react-lib | 135 | 2024-01-19T23:39:41.820147 | Apache-2.0 | true | d2e23617e9530e58c06af1b1ca4c56ba |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_convert_dtypes.cpython-313.pyc | test_convert_dtypes.cpython-313.pyc | Other | 12,427 | 0.95 | 0 | 0 | vue-tools | 496 | 2025-03-06T20:53:01.253259 | MIT | true | 7e1b4b47a1b00f4825e8808ab0123bfc |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_copy.cpython-313.pyc | test_copy.cpython-313.pyc | Other | 3,601 | 0.8 | 0 | 0 | vue-tools | 720 | 2025-02-02T20:19:16.336750 | Apache-2.0 | true | cd15bc78b88f4a04b03d83f1fd66fa97 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_count.cpython-313.pyc | test_count.cpython-313.pyc | Other | 2,275 | 0.8 | 0 | 0 | vue-tools | 654 | 2023-12-25T03:25:11.122130 | BSD-3-Clause | true | f34057f55614e8241b07bd405b9dcd5d |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_cov_corr.cpython-313.pyc | test_cov_corr.cpython-313.pyc | Other | 30,846 | 0.95 | 0 | 0.003546 | react-lib | 278 | 2024-08-19T19:15:00.079908 | MIT | true | 5c9d5b5a903eac4e0458d475f66e8cfe |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_describe.cpython-313.pyc | test_describe.cpython-313.pyc | Other | 18,762 | 0.95 | 0 | 0 | python-kit | 629 | 2023-11-20T19:42:44.447237 | BSD-3-Clause | true | 9c98f545f418579c2aebb6bd1db6087a |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_diff.cpython-313.pyc | test_diff.cpython-313.pyc | Other | 17,886 | 0.95 | 0 | 0.005051 | react-lib | 387 | 2023-08-09T07:48:58.004972 | MIT | true | 87e223f3862178636a245511b2fe331d |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_dot.cpython-313.pyc | test_dot.cpython-313.pyc | Other | 8,678 | 0.95 | 0 | 0 | vue-tools | 974 | 2024-10-01T15:37:23.981153 | BSD-3-Clause | true | 0c08ee16a2afd4a0635769142ac8f36a |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_drop.cpython-313.pyc | test_drop.cpython-313.pyc | Other | 31,865 | 0.8 | 0 | 0.005277 | vue-tools | 751 | 2024-05-31T15:54:42.638376 | MIT | true | 061381e667b27c66e4ada4aecdbb49d0 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_droplevel.cpython-313.pyc | test_droplevel.cpython-313.pyc | Other | 2,002 | 0.8 | 0 | 0.095238 | vue-tools | 880 | 2024-01-19T15:16:25.940996 | MIT | true | 2b923c45969ef7cd61675c26ce95917b |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_dropna.cpython-313.pyc | test_dropna.cpython-313.pyc | Other | 17,787 | 0.8 | 0.004608 | 0 | python-kit | 247 | 2025-03-29T02:43:06.052605 | BSD-3-Clause | true | afa9f2c7337eb646dcedb72fa1d6604a |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_drop_duplicates.cpython-313.pyc | test_drop_duplicates.cpython-313.pyc | Other | 19,883 | 0.8 | 0 | 0.006969 | python-kit | 704 | 2025-05-25T13:15:32.058660 | Apache-2.0 | true | 3f468f59ed158d1a8d31c70a1a1abdb9 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_dtypes.cpython-313.pyc | test_dtypes.cpython-313.pyc | Other | 8,965 | 0.8 | 0 | 0 | python-kit | 788 | 2025-06-27T11:19:16.297396 | GPL-3.0 | true | e14c5469d13bb3f1015c7b753f563575 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_duplicated.cpython-313.pyc | test_duplicated.cpython-313.pyc | Other | 5,292 | 0.8 | 0 | 0.033333 | vue-tools | 977 | 2025-03-27T15:49:39.701337 | GPL-3.0 | true | 006fd53c8261a6c5506f0109aadbdd0e |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_equals.cpython-313.pyc | test_equals.cpython-313.pyc | Other | 4,809 | 0.8 | 0 | 0 | vue-tools | 250 | 2025-04-21T04:51:33.813127 | GPL-3.0 | true | 3f91dcef27e3e811da98698094fc31a2 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_explode.cpython-313.pyc | test_explode.cpython-313.pyc | Other | 12,563 | 0.8 | 0 | 0.012346 | node-utils | 427 | 2025-01-23T00:07:54.721092 | GPL-3.0 | true | b7789417e309fe5ccb42fe45e2149bcf |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_fillna.cpython-313.pyc | test_fillna.cpython-313.pyc | Other | 52,805 | 0.8 | 0 | 0.008242 | vue-tools | 623 | 2023-08-11T21:40:55.106401 | BSD-3-Clause | true | b04a3b1bd3300e543c2427db07db5a47 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_filter.cpython-313.pyc | test_filter.cpython-313.pyc | Other | 8,529 | 0.8 | 0 | 0 | node-utils | 575 | 2025-05-26T04:00:31.711868 | GPL-3.0 | true | d905033b9fdc29706c74f51e26b905f9 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_first_and_last.cpython-313.pyc | test_first_and_last.cpython-313.pyc | Other | 9,101 | 0.8 | 0.004902 | 0 | vue-tools | 51 | 2024-10-19T21:57:09.646876 | Apache-2.0 | true | 36b8db85582c82796702a3d8399f45a3 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_first_valid_index.cpython-313.pyc | test_first_valid_index.cpython-313.pyc | Other | 4,820 | 0.8 | 0.02381 | 0 | awesome-app | 416 | 2024-10-11T11:41:09.136109 | GPL-3.0 | true | 3d4ba954e6236388ee8f625e89be6647 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_get_numeric_data.cpython-313.pyc | test_get_numeric_data.cpython-313.pyc | Other | 5,583 | 0.8 | 0 | 0 | awesome-app | 325 | 2024-03-20T07:33:36.942647 | MIT | true | 4236728c16d56f580d4862835383833f |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_head_tail.cpython-313.pyc | test_head_tail.cpython-313.pyc | Other | 4,389 | 0.8 | 0 | 0 | vue-tools | 976 | 2024-03-22T22:39:17.010164 | GPL-3.0 | true | 386d7b60f876ab45a1b4158ef3b097c4 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_infer_objects.cpython-313.pyc | test_infer_objects.cpython-313.pyc | Other | 1,874 | 0.8 | 0 | 0 | vue-tools | 304 | 2023-12-30T02:30:54.228238 | GPL-3.0 | true | 9ca7f6af9dd1477840bb775aea16fa56 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_info.cpython-313.pyc | test_info.cpython-313.pyc | Other | 27,323 | 0.95 | 0.009615 | 0.070707 | python-kit | 634 | 2024-10-11T09:20:13.216636 | BSD-3-Clause | true | 428c69030b830a1170b59dab7bc40c22 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_interpolate.cpython-313.pyc | test_interpolate.cpython-313.pyc | Other | 30,445 | 0.95 | 0.002857 | 0 | vue-tools | 171 | 2023-10-26T17:57:31.355098 | BSD-3-Clause | true | 8d7daf5162e520b9356d75e6dd0af470 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_isetitem.cpython-313.pyc | test_isetitem.cpython-313.pyc | Other | 2,738 | 0.8 | 0 | 0 | awesome-app | 351 | 2024-01-27T04:54:50.451028 | MIT | true | 8ae1579b73d4798db7194eeeab2123fa |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_isin.cpython-313.pyc | test_isin.cpython-313.pyc | Other | 12,096 | 0.8 | 0 | 0 | react-lib | 341 | 2025-05-03T11:19:25.619914 | Apache-2.0 | true | 6f624b11ae44314a83d6627285273010 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_is_homogeneous_dtype.cpython-313.pyc | test_is_homogeneous_dtype.cpython-313.pyc | Other | 1,623 | 0.7 | 0 | 0 | python-kit | 907 | 2024-01-31T17:20:12.167112 | GPL-3.0 | true | da725b64965fe2f6939f38ab526ebf68 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_iterrows.cpython-313.pyc | test_iterrows.cpython-313.pyc | Other | 712 | 0.7 | 0 | 0 | vue-tools | 410 | 2023-07-24T11:13:15.994219 | MIT | true | 4482130ac19739f15e17efcb52bba086 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_join.cpython-313.pyc | test_join.cpython-313.pyc | Other | 25,273 | 0.95 | 0 | 0.014134 | awesome-app | 220 | 2024-06-17T07:03:47.416437 | MIT | true | 61def55d72ce8cbe94a9d104847dcd96 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_map.cpython-313.pyc | test_map.cpython-313.pyc | Other | 12,226 | 0.95 | 0 | 0.023256 | awesome-app | 691 | 2024-06-21T17:12:18.707675 | Apache-2.0 | true | c7465a88a3ce45b90fd6c9351a3dcfb9 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_matmul.cpython-313.pyc | test_matmul.cpython-313.pyc | Other | 5,317 | 0.8 | 0 | 0 | node-utils | 280 | 2023-07-28T22:04:58.239510 | Apache-2.0 | true | 0539c570505880b0d783ed19a53361a8 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_nlargest.cpython-313.pyc | test_nlargest.cpython-313.pyc | Other | 12,011 | 0.8 | 0.006098 | 0 | python-kit | 316 | 2024-10-17T22:42:41.282972 | MIT | true | 7a7f8c464f470cb89adbc1cf579ad3da |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_pct_change.cpython-313.pyc | test_pct_change.cpython-313.pyc | Other | 10,251 | 0.8 | 0 | 0.006024 | node-utils | 867 | 2024-12-10T21:16:44.780017 | Apache-2.0 | true | afeb5680084715d1fa9568489f6afb8a |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_pipe.cpython-313.pyc | test_pipe.cpython-313.pyc | Other | 2,511 | 0.8 | 0 | 0 | node-utils | 330 | 2025-03-18T10:22:50.019356 | MIT | true | bcfe102833c40c7319867fb7ed0130bc |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_pop.cpython-313.pyc | test_pop.cpython-313.pyc | Other | 4,005 | 0.8 | 0 | 0 | vue-tools | 580 | 2023-12-21T06:26:55.645565 | BSD-3-Clause | true | ab1744d09e88822c4d010e26db2e07ad |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_quantile.cpython-313.pyc | test_quantile.cpython-313.pyc | Other | 44,488 | 0.8 | 0.007547 | 0.003906 | awesome-app | 756 | 2025-02-02T16:25:20.426014 | GPL-3.0 | true | 01b65349b1cfe80eb1010c5f70c623c2 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_rank.cpython-313.pyc | test_rank.cpython-313.pyc | Other | 25,550 | 0.95 | 0.003861 | 0 | react-lib | 648 | 2023-09-18T20:34:12.116929 | Apache-2.0 | true | 4f967783fcd2af7b6346ee6776ad2663 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_reindex.cpython-313.pyc | test_reindex.cpython-313.pyc | Other | 70,474 | 0.6 | 0.001325 | 0.005427 | node-utils | 801 | 2023-08-15T18:14:41.287261 | MIT | true | 1ccf49fbbb33bd4536d8da3bec38def8 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_reindex_like.cpython-313.pyc | test_reindex_like.cpython-313.pyc | Other | 2,593 | 0.8 | 0 | 0 | python-kit | 533 | 2025-04-13T21:38:24.820738 | BSD-3-Clause | true | 8638c3b806c7d72623c422d096fec100 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_rename.cpython-313.pyc | test_rename.cpython-313.pyc | Other | 21,758 | 0.8 | 0 | 0.003448 | vue-tools | 46 | 2023-12-01T23:24:18.150846 | BSD-3-Clause | true | ea8e61f842c5ee97c332d2872f1c08a0 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_rename_axis.cpython-313.pyc | test_rename_axis.cpython-313.pyc | Other | 6,511 | 0.8 | 0 | 0 | react-lib | 566 | 2023-07-29T23:21:07.588461 | Apache-2.0 | true | 94962386363325531dfa12c7d293a9a6 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_reorder_levels.cpython-313.pyc | test_reorder_levels.cpython-313.pyc | Other | 4,233 | 0.8 | 0 | 0 | react-lib | 473 | 2023-10-05T22:04:15.841811 | Apache-2.0 | true | f807c4cb74ae20d74b62808b2ac7a7d4 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_replace.cpython-313.pyc | test_replace.cpython-313.pyc | Other | 82,230 | 0.6 | 0.002278 | 0.003464 | node-utils | 479 | 2024-05-20T01:32:38.224501 | MIT | true | 7a81981dc056cda5610d40b8019622ac |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_reset_index.cpython-313.pyc | test_reset_index.cpython-313.pyc | Other | 40,675 | 0.8 | 0 | 0.008929 | node-utils | 500 | 2024-10-17T03:31:37.268668 | GPL-3.0 | true | dd9ed03949220516a8040e5b898931fa |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_round.cpython-313.pyc | test_round.cpython-313.pyc | Other | 11,654 | 0.8 | 0 | 0 | node-utils | 397 | 2024-10-10T02:15:42.576873 | BSD-3-Clause | true | 399dbbd0dcd6aa2033d1b84be2b59e64 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_sample.cpython-313.pyc | test_sample.cpython-313.pyc | Other | 20,404 | 0.95 | 0.014184 | 0 | react-lib | 305 | 2024-12-11T04:21:05.649693 | BSD-3-Clause | true | d5fba22fdf9391f78be784f0135c0066 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_select_dtypes.cpython-313.pyc | test_select_dtypes.cpython-313.pyc | Other | 27,160 | 0.8 | 0 | 0 | awesome-app | 564 | 2025-04-03T22:14:11.536489 | BSD-3-Clause | true | 0fd0b57a2e19378828604cded415c155 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_set_axis.cpython-313.pyc | test_set_axis.cpython-313.pyc | Other | 8,926 | 0.8 | 0 | 0 | react-lib | 279 | 2024-01-31T20:55:52.158262 | MIT | true | e2f355d53df6ca3c940e8255a64c9995 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_set_index.cpython-313.pyc | test_set_index.cpython-313.pyc | Other | 38,659 | 0.8 | 0.00464 | 0.016432 | python-kit | 565 | 2024-10-26T05:15:30.698576 | BSD-3-Clause | true | af96128c5324875a680e7e0ba48d25a7 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_shift.cpython-313.pyc | test_shift.cpython-313.pyc | Other | 44,174 | 0.95 | 0.004545 | 0.011601 | node-utils | 767 | 2023-08-29T04:15:12.556146 | MIT | true | 0010b90fb6fba14a3a75b180192aeed7 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_size.cpython-313.pyc | test_size.cpython-313.pyc | Other | 1,109 | 0.8 | 0 | 0 | awesome-app | 459 | 2023-11-19T20:43:26.250378 | Apache-2.0 | true | 53612a575ebc64a25688deb9f80652a5 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_sort_index.cpython-313.pyc | test_sort_index.cpython-313.pyc | Other | 46,679 | 0.8 | 0.002062 | 0.019108 | vue-tools | 141 | 2023-09-05T03:02:45.530674 | MIT | true | 008ab81d1db6ae0920f1e1928b468c21 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_sort_values.cpython-313.pyc | test_sort_values.cpython-313.pyc | Other | 43,035 | 0.95 | 0.001934 | 0.005894 | vue-tools | 838 | 2025-07-07T12:27:41.458057 | MIT | true | d5a041e9f89cd7a5f659446f5d6f72df |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_swapaxes.cpython-313.pyc | test_swapaxes.cpython-313.pyc | Other | 3,457 | 0.8 | 0.016129 | 0 | react-lib | 834 | 2024-11-18T17:54:19.136371 | MIT | true | 074c0146bcd5cc812b900fc8b06c69ef |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_swaplevel.cpython-313.pyc | test_swaplevel.cpython-313.pyc | Other | 2,525 | 0.8 | 0 | 0 | node-utils | 346 | 2023-11-04T12:09:43.073473 | Apache-2.0 | true | da5cf0e3c6e70bb97d2cb5c2b889788c |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_to_csv.cpython-313.pyc | test_to_csv.cpython-313.pyc | Other | 74,740 | 0.6 | 0.001171 | 0.008393 | vue-tools | 576 | 2024-05-18T00:59:13.700915 | BSD-3-Clause | true | 5fa8445ecb02d822936681dd72c3a1fd |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_to_dict.cpython-313.pyc | test_to_dict.cpython-313.pyc | Other | 24,868 | 0.95 | 0.011858 | 0.020325 | awesome-app | 5 | 2024-01-30T15:03:10.972294 | Apache-2.0 | true | dc660b70314446979f2cb72dc9ab8891 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_to_dict_of_blocks.cpython-313.pyc | test_to_dict_of_blocks.cpython-313.pyc | Other | 4,153 | 0.8 | 0 | 0 | react-lib | 309 | 2024-11-04T12:54:31.523198 | GPL-3.0 | true | 6d6a205572887c609fa0dbb69d0a0677 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_to_numpy.cpython-313.pyc | test_to_numpy.cpython-313.pyc | Other | 3,612 | 0.8 | 0 | 0 | node-utils | 210 | 2024-07-18T04:28:41.250536 | GPL-3.0 | true | 5c78d4dfd94efc65ee72be4d4d530ad8 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_to_period.cpython-313.pyc | test_to_period.cpython-313.pyc | Other | 5,227 | 0.8 | 0.014706 | 0 | python-kit | 258 | 2025-03-14T05:31:32.089977 | MIT | true | b729e1ee3f16abcf03558d67cad05ce3 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_to_records.cpython-313.pyc | test_to_records.cpython-313.pyc | Other | 20,696 | 0.8 | 0.01676 | 0.011696 | vue-tools | 418 | 2025-05-03T08:55:25.668954 | GPL-3.0 | true | 33ae2c8d3eec69d1ea2cbc4d5664baa1 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_to_timestamp.cpython-313.pyc | test_to_timestamp.cpython-313.pyc | Other | 8,780 | 0.8 | 0 | 0 | awesome-app | 146 | 2023-12-25T03:23:33.876981 | BSD-3-Clause | true | 0d9dee1a9f9dfec5ecac82331b7f76d3 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_transpose.cpython-313.pyc | test_transpose.cpython-313.pyc | Other | 12,036 | 0.8 | 0 | 0 | vue-tools | 23 | 2024-06-16T17:48:21.043889 | GPL-3.0 | true | 6bdaab030c880afe15ae0903a4ecfa11 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_truncate.cpython-313.pyc | test_truncate.cpython-313.pyc | Other | 8,688 | 0.95 | 0 | 0 | vue-tools | 513 | 2025-05-31T06:52:52.730835 | Apache-2.0 | true | 473fd02d7d7e1f5d0506311b48aa28eb |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_tz_convert.cpython-313.pyc | test_tz_convert.cpython-313.pyc | Other | 7,883 | 0.8 | 0 | 0 | vue-tools | 514 | 2024-07-29T19:00:30.760157 | BSD-3-Clause | true | d16b07d242e26925bf31b62b76ca8fa3 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_tz_localize.cpython-313.pyc | test_tz_localize.cpython-313.pyc | Other | 3,741 | 0.8 | 0 | 0 | react-lib | 790 | 2024-11-20T06:08:04.128096 | MIT | true | 8341f8d2e246b5a897dceb2399e60661 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_update.cpython-313.pyc | test_update.cpython-313.pyc | Other | 12,107 | 0.8 | 0 | 0.027972 | react-lib | 270 | 2025-04-02T05:04:44.759029 | MIT | true | 307d9d209d9b1f0fc03fc82ac15d3225 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_values.cpython-313.pyc | test_values.cpython-313.pyc | Other | 14,349 | 0.8 | 0 | 0.008475 | react-lib | 409 | 2025-06-17T15:03:59.367293 | GPL-3.0 | true | 33bc967b38051028be89a06e6b00a160 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\test_value_counts.cpython-313.pyc | test_value_counts.cpython-313.pyc | Other | 8,281 | 0.8 | 0 | 0.008929 | awesome-app | 130 | 2024-04-17T14:08:40.882942 | Apache-2.0 | true | 1c47b1eb8aaf83f7f742364cc4bb3089 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\methods\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 440 | 0.7 | 0.111111 | 0 | node-utils | 229 | 2025-03-24T16:05:08.621276 | GPL-3.0 | true | 1be1abb7c8ab5f2c3f14ae3f9184ec47 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\__pycache__\common.cpython-313.pyc | common.cpython-313.pyc | Other | 3,400 | 0.8 | 0 | 0 | node-utils | 377 | 2024-09-06T20:51:16.822930 | MIT | true | 90687290b312e13339b69589a734a9be |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\__pycache__\conftest.cpython-313.pyc | conftest.cpython-313.pyc | Other | 4,334 | 0.8 | 0.064103 | 0 | vue-tools | 153 | 2024-02-27T09:16:14.374321 | Apache-2.0 | true | f0e3bd1031b636ba383e90586da41e61 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\__pycache__\test_alter_axes.cpython-313.pyc | test_alter_axes.cpython-313.pyc | Other | 1,707 | 0.8 | 0 | 0 | node-utils | 718 | 2024-08-04T04:16:32.663987 | MIT | true | 05d5a8719595f783a85fd03424d5e3a8 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\__pycache__\test_api.cpython-313.pyc | test_api.cpython-313.pyc | Other | 21,434 | 0.95 | 0 | 0 | vue-tools | 558 | 2025-06-12T09:34:36.266596 | Apache-2.0 | true | e2d9baef756fa7fa33f9990fa9f507a2 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\__pycache__\test_arrow_interface.cpython-313.pyc | test_arrow_interface.cpython-313.pyc | Other | 3,212 | 0.95 | 0 | 0 | python-kit | 967 | 2024-11-26T06:02:11.213319 | MIT | true | d1fb500951bb92f99e6a3df635830c56 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\__pycache__\test_block_internals.cpython-313.pyc | test_block_internals.cpython-313.pyc | Other | 22,806 | 0.8 | 0 | 0.007843 | react-lib | 946 | 2023-11-08T09:44:08.701786 | MIT | true | 0da32bddc6e465a5d3e7b1d4b85a7a41 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\__pycache__\test_cumulative.cpython-313.pyc | test_cumulative.cpython-313.pyc | Other | 4,385 | 0.8 | 0.014493 | 0 | react-lib | 820 | 2024-03-23T06:05:13.322752 | MIT | true | 87c440cae08f379c81ec92cac9440926 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\__pycache__\test_iteration.cpython-313.pyc | test_iteration.cpython-313.pyc | Other | 9,420 | 0.8 | 0.014493 | 0.014925 | react-lib | 676 | 2024-11-07T04:08:18.315240 | BSD-3-Clause | true | 96fe292ec1d369de6ea5a5240c411657 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\__pycache__\test_logical_ops.cpython-313.pyc | test_logical_ops.cpython-313.pyc | Other | 9,937 | 0.8 | 0.035294 | 0 | python-kit | 840 | 2024-04-15T02:39:01.944117 | BSD-3-Clause | true | debdf0e7efd9e30cce101cd14d9826e5 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\__pycache__\test_nonunique_indexes.cpython-313.pyc | test_nonunique_indexes.cpython-313.pyc | Other | 16,346 | 0.8 | 0 | 0.008621 | awesome-app | 361 | 2024-10-04T02:13:22.988397 | BSD-3-Clause | true | e9f2a0b06059cb71126e2d7001e25208 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\__pycache__\test_npfuncs.cpython-313.pyc | test_npfuncs.cpython-313.pyc | Other | 4,517 | 0.8 | 0.015873 | 0 | vue-tools | 594 | 2024-05-18T08:04:25.064852 | Apache-2.0 | true | 23c54f141e02cb98672bd6ed2d0ef47e |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\__pycache__\test_query_eval.cpython-313.pyc | test_query_eval.cpython-313.pyc | Other | 89,041 | 0.75 | 0.00576 | 0.001157 | vue-tools | 355 | 2024-08-12T04:47:42.565422 | BSD-3-Clause | true | 0c8e3e7f080be1abbc5aa1e14ad245c3 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\__pycache__\test_reductions.cpython-313.pyc | test_reductions.cpython-313.pyc | Other | 105,922 | 0.75 | 0.020064 | 0.004125 | react-lib | 296 | 2024-08-15T22:47:24.191981 | BSD-3-Clause | true | fc2762f0521b793b38bb7bd4666e2b70 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\__pycache__\test_repr.cpython-313.pyc | test_repr.cpython-313.pyc | Other | 27,107 | 0.95 | 0 | 0.009615 | node-utils | 627 | 2024-10-05T18:56:08.827958 | MIT | true | 426ea51031afa692f85b22834205aff2 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\__pycache__\test_subclass.cpython-313.pyc | test_subclass.cpython-313.pyc | Other | 43,357 | 0.95 | 0 | 0.125761 | vue-tools | 92 | 2024-12-13T23:20:53.534881 | Apache-2.0 | true | 8c8bb2348b37114690c6bc779c257244 |
\n\n | .venv\Lib\site-packages\pandas\tests\frame\__pycache__\test_ufunc.cpython-313.pyc | test_ufunc.cpython-313.pyc | Other | 18,124 | 0.95 | 0 | 0.061728 | python-kit | 771 | 2023-10-06T06:15:48.105367 | Apache-2.0 | true | bdb6127b618d1c4bf0d40aec42346167 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.