1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587
|
.. currentmodule:: pandas
.. _api:
*************
API Reference
*************
This page gives an overview of all public pandas objects, functions and
methods. All classes and functions exposed in ``pandas.*`` namespace are public.
Some subpackages are public which include ``pandas.errors``,
``pandas.plotting``, and ``pandas.testing``. Public functions in
``pandas.io`` and ``pandas.tseries`` submodules are mentioned in
the documentation. ``pandas.api.types`` subpackage holds some
public functions related to data types in pandas.
.. warning::
The ``pandas.core``, ``pandas.compat``, and ``pandas.util`` top-level modules are PRIVATE. Stable functionality in such modules is not guaranteed.
.. _api.functions:
Input/Output
------------
Pickling
~~~~~~~~
.. autosummary::
:toctree: generated/
read_pickle
Flat File
~~~~~~~~~
.. autosummary::
:toctree: generated/
read_table
read_csv
read_fwf
read_msgpack
Clipboard
~~~~~~~~~
.. autosummary::
:toctree: generated/
read_clipboard
Excel
~~~~~
.. autosummary::
:toctree: generated/
read_excel
ExcelFile.parse
JSON
~~~~
.. autosummary::
:toctree: generated/
read_json
.. currentmodule:: pandas.io.json
.. autosummary::
:toctree: generated/
json_normalize
build_table_schema
.. currentmodule:: pandas
HTML
~~~~
.. autosummary::
:toctree: generated/
read_html
HDFStore: PyTables (HDF5)
~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
read_hdf
HDFStore.put
HDFStore.append
HDFStore.get
HDFStore.select
HDFStore.info
HDFStore.keys
Feather
~~~~~~~
.. autosummary::
:toctree: generated/
read_feather
Parquet
~~~~~~~
.. autosummary::
:toctree: generated/
read_parquet
SAS
~~~
.. autosummary::
:toctree: generated/
read_sas
SQL
~~~
.. autosummary::
:toctree: generated/
read_sql_table
read_sql_query
read_sql
Google BigQuery
~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
read_gbq
STATA
~~~~~
.. autosummary::
:toctree: generated/
read_stata
.. currentmodule:: pandas.io.stata
.. autosummary::
:toctree: generated/
StataReader.data
StataReader.data_label
StataReader.value_labels
StataReader.variable_labels
StataWriter.write_file
.. currentmodule:: pandas
General functions
-----------------
Data manipulations
~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
melt
pivot
pivot_table
crosstab
cut
qcut
merge
merge_ordered
merge_asof
concat
get_dummies
factorize
unique
wide_to_long
Top-level missing data
~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
isna
isnull
notna
notnull
Top-level conversions
~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
to_numeric
Top-level dealing with datetimelike
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
to_datetime
to_timedelta
date_range
bdate_range
period_range
timedelta_range
infer_freq
Top-level dealing with intervals
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
interval_range
Top-level evaluation
~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
eval
Testing
~~~~~~~
.. autosummary::
:toctree: generated/
test
.. _api.series:
Series
------
Constructor
~~~~~~~~~~~
.. currentmodule:: pandas
.. autosummary::
:toctree: generated/
Series
Attributes
~~~~~~~~~~
**Axes**
.. autosummary::
:toctree: generated/
Series.index
.. autosummary::
:toctree: generated/
Series.values
Series.dtype
Series.ftype
Series.shape
Series.nbytes
Series.ndim
Series.size
Series.strides
Series.itemsize
Series.base
Series.T
Series.memory_usage
Series.hasnans
Series.flags
Series.empty
Series.dtypes
Series.ftypes
Series.data
Series.is_copy
Series.name
Series.put
Conversion
~~~~~~~~~~
.. autosummary::
:toctree: generated/
Series.astype
Series.infer_objects
Series.convert_objects
Series.copy
Series.bool
Series.to_period
Series.to_timestamp
Series.tolist
Series.get_values
Indexing, iteration
~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Series.get
Series.at
Series.iat
Series.loc
Series.iloc
Series.__iter__
Series.iteritems
Series.items
Series.keys
Series.pop
Series.item
Series.xs
For more information on ``.at``, ``.iat``, ``.loc``, and
``.iloc``, see the :ref:`indexing documentation <indexing>`.
Binary operator functions
~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Series.add
Series.sub
Series.mul
Series.div
Series.truediv
Series.floordiv
Series.mod
Series.pow
Series.radd
Series.rsub
Series.rmul
Series.rdiv
Series.rtruediv
Series.rfloordiv
Series.rmod
Series.rpow
Series.combine
Series.combine_first
Series.round
Series.lt
Series.gt
Series.le
Series.ge
Series.ne
Series.eq
Series.product
Series.dot
Function application, GroupBy & Window
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Series.apply
Series.agg
Series.aggregate
Series.transform
Series.map
Series.groupby
Series.rolling
Series.expanding
Series.ewm
Series.pipe
.. _api.series.stats:
Computations / Descriptive Stats
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Series.abs
Series.all
Series.any
Series.autocorr
Series.between
Series.clip
Series.clip_lower
Series.clip_upper
Series.corr
Series.count
Series.cov
Series.cummax
Series.cummin
Series.cumprod
Series.cumsum
Series.describe
Series.diff
Series.factorize
Series.kurt
Series.mad
Series.max
Series.mean
Series.median
Series.min
Series.mode
Series.nlargest
Series.nsmallest
Series.pct_change
Series.prod
Series.quantile
Series.rank
Series.sem
Series.skew
Series.std
Series.sum
Series.var
Series.kurtosis
Series.unique
Series.nunique
Series.is_unique
Series.is_monotonic
Series.is_monotonic_increasing
Series.is_monotonic_decreasing
Series.value_counts
Series.compound
Series.nonzero
Series.ptp
Reindexing / Selection / Label manipulation
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Series.align
Series.drop
Series.drop_duplicates
Series.duplicated
Series.equals
Series.first
Series.head
Series.idxmax
Series.idxmin
Series.isin
Series.last
Series.reindex
Series.reindex_like
Series.rename
Series.rename_axis
Series.reset_index
Series.sample
Series.select
Series.set_axis
Series.take
Series.tail
Series.truncate
Series.where
Series.mask
Series.add_prefix
Series.add_suffix
Series.filter
Missing data handling
~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Series.isna
Series.notna
Series.dropna
Series.fillna
Series.interpolate
Reshaping, sorting
~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Series.argsort
Series.argmin
Series.argmax
Series.reorder_levels
Series.sort_values
Series.sort_index
Series.swaplevel
Series.unstack
Series.searchsorted
Series.ravel
Series.repeat
Series.squeeze
Series.view
Series.sortlevel
Combining / joining / merging
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Series.append
Series.replace
Series.update
Time series-related
~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Series.asfreq
Series.asof
Series.shift
Series.first_valid_index
Series.last_valid_index
Series.resample
Series.tz_convert
Series.tz_localize
Series.at_time
Series.between_time
Series.tshift
Series.slice_shift
Datetimelike Properties
~~~~~~~~~~~~~~~~~~~~~~~
``Series.dt`` can be used to access the values of the series as
datetimelike and return several properties.
These can be accessed like ``Series.dt.<property>``.
**Datetime Properties**
.. autosummary::
:toctree: generated/
:template: autosummary/accessor_attribute.rst
Series.dt.date
Series.dt.time
Series.dt.year
Series.dt.month
Series.dt.day
Series.dt.hour
Series.dt.minute
Series.dt.second
Series.dt.microsecond
Series.dt.nanosecond
Series.dt.week
Series.dt.weekofyear
Series.dt.dayofweek
Series.dt.weekday
Series.dt.dayofyear
Series.dt.quarter
Series.dt.is_month_start
Series.dt.is_month_end
Series.dt.is_quarter_start
Series.dt.is_quarter_end
Series.dt.is_year_start
Series.dt.is_year_end
Series.dt.is_leap_year
Series.dt.daysinmonth
Series.dt.days_in_month
Series.dt.tz
Series.dt.freq
**Datetime Methods**
.. autosummary::
:toctree: generated/
:template: autosummary/accessor_method.rst
Series.dt.to_period
Series.dt.to_pydatetime
Series.dt.tz_localize
Series.dt.tz_convert
Series.dt.normalize
Series.dt.strftime
Series.dt.round
Series.dt.floor
Series.dt.ceil
Series.dt.month_name
Series.dt.day_name
**Timedelta Properties**
.. autosummary::
:toctree: generated/
:template: autosummary/accessor_attribute.rst
Series.dt.days
Series.dt.seconds
Series.dt.microseconds
Series.dt.nanoseconds
Series.dt.components
**Timedelta Methods**
.. autosummary::
:toctree: generated/
:template: autosummary/accessor_method.rst
Series.dt.to_pytimedelta
Series.dt.total_seconds
String handling
~~~~~~~~~~~~~~~
``Series.str`` can be used to access the values of the series as
strings and apply several methods to it. These can be accessed like
``Series.str.<function/property>``.
.. autosummary::
:toctree: generated/
:template: autosummary/accessor_method.rst
Series.str.capitalize
Series.str.cat
Series.str.center
Series.str.contains
Series.str.count
Series.str.decode
Series.str.encode
Series.str.endswith
Series.str.extract
Series.str.extractall
Series.str.find
Series.str.findall
Series.str.get
Series.str.index
Series.str.join
Series.str.len
Series.str.ljust
Series.str.lower
Series.str.lstrip
Series.str.match
Series.str.normalize
Series.str.pad
Series.str.partition
Series.str.repeat
Series.str.replace
Series.str.rfind
Series.str.rindex
Series.str.rjust
Series.str.rpartition
Series.str.rstrip
Series.str.slice
Series.str.slice_replace
Series.str.split
Series.str.rsplit
Series.str.startswith
Series.str.strip
Series.str.swapcase
Series.str.title
Series.str.translate
Series.str.upper
Series.str.wrap
Series.str.zfill
Series.str.isalnum
Series.str.isalpha
Series.str.isdigit
Series.str.isspace
Series.str.islower
Series.str.isupper
Series.str.istitle
Series.str.isnumeric
Series.str.isdecimal
Series.str.get_dummies
..
The following is needed to ensure the generated pages are created with the
correct template (otherwise they would be created in the Series/Index class page)
..
.. autosummary::
:toctree: generated/
:template: autosummary/accessor.rst
Series.str
Series.cat
Series.dt
Index.str
.. _api.categorical:
Categorical
~~~~~~~~~~~
Pandas defines a custom data type for representing data that can take only a
limited, fixed set of values. The dtype of a ``Categorical`` can be described by
a :class:`pandas.api.types.CategoricalDtype`.
.. autosummary::
:toctree: generated/
:template: autosummary/class_without_autosummary.rst
api.types.CategoricalDtype
.. autosummary::
:toctree: generated/
api.types.CategoricalDtype.categories
api.types.CategoricalDtype.ordered
Categorical data can be stored in a :class:`pandas.Categorical`
.. autosummary::
:toctree: generated/
:template: autosummary/class_without_autosummary.rst
Categorical
The alternative :meth:`Categorical.from_codes` constructor can be used when you
have the categories and integer codes already:
.. autosummary::
:toctree: generated/
Categorical.from_codes
The dtype information is available on the ``Categorical``
.. autosummary::
:toctree: generated/
Categorical.dtype
Categorical.categories
Categorical.ordered
Categorical.codes
``np.asarray(categorical)`` works by implementing the array interface. Be aware, that this converts
the Categorical back to a NumPy array, so categories and order information is not preserved!
.. autosummary::
:toctree: generated/
Categorical.__array__
A ``Categorical`` can be stored in a ``Series`` or ``DataFrame``.
To create a Series of dtype ``category``, use ``cat = s.astype(dtype)`` or
``Series(..., dtype=dtype)`` where ``dtype`` is either
* the string ``'category'``
* an instance of :class:`~pandas.api.types.CategoricalDtype`.
If the Series is of dtype ``CategoricalDtype``, ``Series.cat`` can be used to change the categorical
data. This accessor is similar to the ``Series.dt`` or ``Series.str`` and has the
following usable methods and properties:
.. autosummary::
:toctree: generated/
:template: autosummary/accessor_attribute.rst
Series.cat.categories
Series.cat.ordered
Series.cat.codes
.. autosummary::
:toctree: generated/
:template: autosummary/accessor_method.rst
Series.cat.rename_categories
Series.cat.reorder_categories
Series.cat.add_categories
Series.cat.remove_categories
Series.cat.remove_unused_categories
Series.cat.set_categories
Series.cat.as_ordered
Series.cat.as_unordered
Plotting
~~~~~~~~
``Series.plot`` is both a callable method and a namespace attribute for
specific plotting methods of the form ``Series.plot.<kind>``.
.. autosummary::
:toctree: generated/
:template: autosummary/accessor_callable.rst
Series.plot
.. autosummary::
:toctree: generated/
:template: autosummary/accessor_method.rst
Series.plot.area
Series.plot.bar
Series.plot.barh
Series.plot.box
Series.plot.density
Series.plot.hist
Series.plot.kde
Series.plot.line
Series.plot.pie
.. autosummary::
:toctree: generated/
Series.hist
Serialization / IO / Conversion
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Series.to_pickle
Series.to_csv
Series.to_dict
Series.to_excel
Series.to_frame
Series.to_xarray
Series.to_hdf
Series.to_sql
Series.to_msgpack
Series.to_json
Series.to_sparse
Series.to_dense
Series.to_string
Series.to_clipboard
Series.to_latex
Sparse
~~~~~~
.. autosummary::
:toctree: generated/
SparseSeries.to_coo
SparseSeries.from_coo
.. _api.dataframe:
DataFrame
---------
Constructor
~~~~~~~~~~~
.. autosummary::
:toctree: generated/
DataFrame
Attributes and underlying data
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
**Axes**
.. autosummary::
:toctree: generated/
DataFrame.index
DataFrame.columns
.. autosummary::
:toctree: generated/
DataFrame.dtypes
DataFrame.ftypes
DataFrame.get_dtype_counts
DataFrame.get_ftype_counts
DataFrame.select_dtypes
DataFrame.values
DataFrame.get_values
DataFrame.axes
DataFrame.ndim
DataFrame.size
DataFrame.shape
DataFrame.memory_usage
DataFrame.empty
DataFrame.is_copy
Conversion
~~~~~~~~~~
.. autosummary::
:toctree: generated/
DataFrame.astype
DataFrame.convert_objects
DataFrame.infer_objects
DataFrame.copy
DataFrame.isna
DataFrame.notna
DataFrame.bool
Indexing, iteration
~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
DataFrame.head
DataFrame.at
DataFrame.iat
DataFrame.loc
DataFrame.iloc
DataFrame.insert
DataFrame.insert
DataFrame.__iter__
DataFrame.items
DataFrame.keys
DataFrame.iteritems
DataFrame.iterrows
DataFrame.itertuples
DataFrame.lookup
DataFrame.pop
DataFrame.tail
DataFrame.xs
DataFrame.get
DataFrame.isin
DataFrame.where
DataFrame.mask
DataFrame.query
For more information on ``.at``, ``.iat``, ``.loc``, and
``.iloc``, see the :ref:`indexing documentation <indexing>`.
Binary operator functions
~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
DataFrame.add
DataFrame.sub
DataFrame.mul
DataFrame.div
DataFrame.truediv
DataFrame.floordiv
DataFrame.mod
DataFrame.pow
DataFrame.dot
DataFrame.radd
DataFrame.rsub
DataFrame.rmul
DataFrame.rdiv
DataFrame.rtruediv
DataFrame.rfloordiv
DataFrame.rmod
DataFrame.rpow
DataFrame.lt
DataFrame.gt
DataFrame.le
DataFrame.ge
DataFrame.ne
DataFrame.eq
DataFrame.combine
DataFrame.combine_first
Function application, GroupBy & Window
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
DataFrame.apply
DataFrame.applymap
DataFrame.pipe
DataFrame.agg
DataFrame.aggregate
DataFrame.transform
DataFrame.groupby
DataFrame.rolling
DataFrame.expanding
DataFrame.ewm
.. _api.dataframe.stats:
Computations / Descriptive Stats
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
DataFrame.abs
DataFrame.all
DataFrame.any
DataFrame.clip
DataFrame.clip_lower
DataFrame.clip_upper
DataFrame.compound
DataFrame.corr
DataFrame.corrwith
DataFrame.count
DataFrame.cov
DataFrame.cummax
DataFrame.cummin
DataFrame.cumprod
DataFrame.cumsum
DataFrame.describe
DataFrame.diff
DataFrame.eval
DataFrame.kurt
DataFrame.kurtosis
DataFrame.mad
DataFrame.max
DataFrame.mean
DataFrame.median
DataFrame.min
DataFrame.mode
DataFrame.pct_change
DataFrame.prod
DataFrame.product
DataFrame.quantile
DataFrame.rank
DataFrame.round
DataFrame.sem
DataFrame.skew
DataFrame.sum
DataFrame.std
DataFrame.var
DataFrame.nunique
Reindexing / Selection / Label manipulation
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
DataFrame.add_prefix
DataFrame.add_suffix
DataFrame.align
DataFrame.at_time
DataFrame.between_time
DataFrame.drop
DataFrame.drop_duplicates
DataFrame.duplicated
DataFrame.equals
DataFrame.filter
DataFrame.first
DataFrame.head
DataFrame.idxmax
DataFrame.idxmin
DataFrame.last
DataFrame.reindex
DataFrame.reindex_axis
DataFrame.reindex_like
DataFrame.rename
DataFrame.rename_axis
DataFrame.reset_index
DataFrame.sample
DataFrame.select
DataFrame.set_axis
DataFrame.set_index
DataFrame.tail
DataFrame.take
DataFrame.truncate
.. _api.dataframe.missing:
Missing data handling
~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
DataFrame.dropna
DataFrame.fillna
DataFrame.replace
DataFrame.interpolate
Reshaping, sorting, transposing
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
DataFrame.pivot
DataFrame.pivot_table
DataFrame.reorder_levels
DataFrame.sort_values
DataFrame.sort_index
DataFrame.nlargest
DataFrame.nsmallest
DataFrame.swaplevel
DataFrame.stack
DataFrame.unstack
DataFrame.swapaxes
DataFrame.melt
DataFrame.squeeze
DataFrame.to_panel
DataFrame.to_xarray
DataFrame.T
DataFrame.transpose
Combining / joining / merging
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
DataFrame.append
DataFrame.assign
DataFrame.join
DataFrame.merge
DataFrame.update
Time series-related
~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
DataFrame.asfreq
DataFrame.asof
DataFrame.shift
DataFrame.slice_shift
DataFrame.tshift
DataFrame.first_valid_index
DataFrame.last_valid_index
DataFrame.resample
DataFrame.to_period
DataFrame.to_timestamp
DataFrame.tz_convert
DataFrame.tz_localize
.. _api.dataframe.plotting:
Plotting
~~~~~~~~
``DataFrame.plot`` is both a callable method and a namespace attribute for
specific plotting methods of the form ``DataFrame.plot.<kind>``.
.. autosummary::
:toctree: generated/
:template: autosummary/accessor_callable.rst
DataFrame.plot
.. autosummary::
:toctree: generated/
:template: autosummary/accessor_method.rst
DataFrame.plot.area
DataFrame.plot.bar
DataFrame.plot.barh
DataFrame.plot.box
DataFrame.plot.density
DataFrame.plot.hexbin
DataFrame.plot.hist
DataFrame.plot.kde
DataFrame.plot.line
DataFrame.plot.pie
DataFrame.plot.scatter
.. autosummary::
:toctree: generated/
DataFrame.boxplot
DataFrame.hist
Serialization / IO / Conversion
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
DataFrame.from_csv
DataFrame.from_dict
DataFrame.from_items
DataFrame.from_records
DataFrame.info
DataFrame.to_parquet
DataFrame.to_pickle
DataFrame.to_csv
DataFrame.to_hdf
DataFrame.to_sql
DataFrame.to_dict
DataFrame.to_excel
DataFrame.to_json
DataFrame.to_html
DataFrame.to_feather
DataFrame.to_latex
DataFrame.to_stata
DataFrame.to_msgpack
DataFrame.to_gbq
DataFrame.to_records
DataFrame.to_sparse
DataFrame.to_dense
DataFrame.to_string
DataFrame.to_clipboard
DataFrame.style
Sparse
~~~~~~
.. autosummary::
:toctree: generated/
SparseDataFrame.to_coo
.. _api.panel:
Panel
------
Constructor
~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Panel
Attributes and underlying data
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
**Axes**
* **items**: axis 0; each item corresponds to a DataFrame contained inside
* **major_axis**: axis 1; the index (rows) of each of the DataFrames
* **minor_axis**: axis 2; the columns of each of the DataFrames
.. autosummary::
:toctree: generated/
Panel.values
Panel.axes
Panel.ndim
Panel.size
Panel.shape
Panel.dtypes
Panel.ftypes
Panel.get_dtype_counts
Panel.get_ftype_counts
Conversion
~~~~~~~~~~
.. autosummary::
:toctree: generated/
Panel.astype
Panel.copy
Panel.isna
Panel.notna
Getting and setting
~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Panel.get_value
Panel.set_value
Indexing, iteration, slicing
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Panel.at
Panel.iat
Panel.loc
Panel.iloc
Panel.__iter__
Panel.iteritems
Panel.pop
Panel.xs
Panel.major_xs
Panel.minor_xs
For more information on ``.at``, ``.iat``, ``.loc``, and
``.iloc``, see the :ref:`indexing documentation <indexing>`.
Binary operator functions
~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Panel.add
Panel.sub
Panel.mul
Panel.div
Panel.truediv
Panel.floordiv
Panel.mod
Panel.pow
Panel.radd
Panel.rsub
Panel.rmul
Panel.rdiv
Panel.rtruediv
Panel.rfloordiv
Panel.rmod
Panel.rpow
Panel.lt
Panel.gt
Panel.le
Panel.ge
Panel.ne
Panel.eq
Function application, GroupBy
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Panel.apply
Panel.groupby
.. _api.panel.stats:
Computations / Descriptive Stats
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Panel.abs
Panel.clip
Panel.clip_lower
Panel.clip_upper
Panel.count
Panel.cummax
Panel.cummin
Panel.cumprod
Panel.cumsum
Panel.max
Panel.mean
Panel.median
Panel.min
Panel.pct_change
Panel.prod
Panel.sem
Panel.skew
Panel.sum
Panel.std
Panel.var
Reindexing / Selection / Label manipulation
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Panel.add_prefix
Panel.add_suffix
Panel.drop
Panel.equals
Panel.filter
Panel.first
Panel.last
Panel.reindex
Panel.reindex_axis
Panel.reindex_like
Panel.rename
Panel.sample
Panel.select
Panel.take
Panel.truncate
Missing data handling
~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Panel.dropna
Reshaping, sorting, transposing
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Panel.sort_index
Panel.swaplevel
Panel.transpose
Panel.swapaxes
Panel.conform
Combining / joining / merging
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Panel.join
Panel.update
Time series-related
~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Panel.asfreq
Panel.shift
Panel.resample
Panel.tz_convert
Panel.tz_localize
Serialization / IO / Conversion
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Panel.from_dict
Panel.to_pickle
Panel.to_excel
Panel.to_hdf
Panel.to_sparse
Panel.to_frame
Panel.to_clipboard
.. _api.index:
Index
-----
**Many of these methods or variants thereof are available on the objects
that contain an index (Series/DataFrame) and those should most likely be
used before calling these methods directly.**
.. autosummary::
:toctree: generated/
Index
Attributes
~~~~~~~~~~
.. autosummary::
:toctree: generated/
Index.values
Index.is_monotonic
Index.is_monotonic_increasing
Index.is_monotonic_decreasing
Index.is_unique
Index.has_duplicates
Index.hasnans
Index.dtype
Index.dtype_str
Index.inferred_type
Index.is_all_dates
Index.shape
Index.name
Index.names
Index.nbytes
Index.ndim
Index.size
Index.empty
Index.strides
Index.itemsize
Index.base
Index.T
Index.memory_usage
Modifying and Computations
~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Index.all
Index.any
Index.argmin
Index.argmax
Index.copy
Index.delete
Index.drop
Index.drop_duplicates
Index.duplicated
Index.equals
Index.factorize
Index.identical
Index.insert
Index.is_
Index.is_boolean
Index.is_categorical
Index.is_floating
Index.is_integer
Index.is_interval
Index.is_lexsorted_for_tuple
Index.is_mixed
Index.is_numeric
Index.is_object
Index.min
Index.max
Index.reindex
Index.rename
Index.repeat
Index.where
Index.take
Index.putmask
Index.set_names
Index.unique
Index.nunique
Index.value_counts
Missing Values
~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Index.fillna
Index.dropna
Index.isna
Index.notna
Conversion
~~~~~~~~~~
.. autosummary::
:toctree: generated/
Index.astype
Index.item
Index.map
Index.ravel
Index.tolist
Index.to_native_types
Index.to_series
Index.to_frame
Index.view
Sorting
~~~~~~~
.. autosummary::
:toctree: generated/
Index.argsort
Index.searchsorted
Index.sort_values
Time-specific operations
~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Index.shift
Combining / joining / set operations
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Index.append
Index.join
Index.intersection
Index.union
Index.difference
Index.symmetric_difference
Selecting
~~~~~~~~~
.. autosummary::
:toctree: generated/
Index.asof
Index.asof_locs
Index.contains
Index.get_duplicates
Index.get_indexer
Index.get_indexer_for
Index.get_indexer_non_unique
Index.get_level_values
Index.get_loc
Index.get_slice_bound
Index.get_value
Index.get_values
Index.set_value
Index.isin
Index.slice_indexer
Index.slice_locs
.. _api.numericindex:
Numeric Index
-------------
.. autosummary::
:toctree: generated/
:template: autosummary/class_without_autosummary.rst
RangeIndex
Int64Index
UInt64Index
Float64Index
.. We need this autosummary so that the methods are generated.
.. Separate block, since they aren't classes.
.. autosummary::
:toctree: generated/
RangeIndex.from_range
.. _api.categoricalindex:
CategoricalIndex
----------------
.. autosummary::
:toctree: generated/
:template: autosummary/class_without_autosummary.rst
CategoricalIndex
Categorical Components
~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
CategoricalIndex.codes
CategoricalIndex.categories
CategoricalIndex.ordered
CategoricalIndex.rename_categories
CategoricalIndex.reorder_categories
CategoricalIndex.add_categories
CategoricalIndex.remove_categories
CategoricalIndex.remove_unused_categories
CategoricalIndex.set_categories
CategoricalIndex.as_ordered
CategoricalIndex.as_unordered
CategoricalIndex.map
.. _api.intervalindex:
IntervalIndex
-------------
.. autosummary::
:toctree: generated/
:template: autosummary/class_without_autosummary.rst
IntervalIndex
IntervalIndex Components
~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
IntervalIndex.from_arrays
IntervalIndex.from_tuples
IntervalIndex.from_breaks
IntervalIndex.contains
IntervalIndex.left
IntervalIndex.right
IntervalIndex.mid
IntervalIndex.closed
IntervalIndex.length
IntervalIndex.values
IntervalIndex.is_non_overlapping_monotonic
IntervalIndex.get_loc
IntervalIndex.get_indexer
.. _api.multiindex:
MultiIndex
----------
.. autosummary::
:toctree: generated/
:template: autosummary/class_without_autosummary.rst
MultiIndex
.. autosummary::
:toctree: generated/
IndexSlice
MultiIndex Constructors
~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
MultiIndex.from_arrays
MultiIndex.from_tuples
MultiIndex.from_product
MultiIndex Attributes
~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
MultiIndex.names
MultiIndex.levels
MultiIndex.labels
MultiIndex.nlevels
MultiIndex.levshape
MultiIndex Components
~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
MultiIndex.set_levels
MultiIndex.set_labels
MultiIndex.to_hierarchical
MultiIndex.to_frame
MultiIndex.is_lexsorted
MultiIndex.sortlevel
MultiIndex.droplevel
MultiIndex.swaplevel
MultiIndex.reorder_levels
MultiIndex.remove_unused_levels
MultiIndex.unique
MultiIndex Selecting
~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
MultiIndex.get_loc
MultiIndex.get_indexer
MultiIndex.get_level_values
.. _api.datetimeindex:
DatetimeIndex
-------------
.. autosummary::
:toctree: generated/
:template: autosummary/class_without_autosummary.rst
DatetimeIndex
Time/Date Components
~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
DatetimeIndex.year
DatetimeIndex.month
DatetimeIndex.day
DatetimeIndex.hour
DatetimeIndex.minute
DatetimeIndex.second
DatetimeIndex.microsecond
DatetimeIndex.nanosecond
DatetimeIndex.date
DatetimeIndex.time
DatetimeIndex.dayofyear
DatetimeIndex.weekofyear
DatetimeIndex.week
DatetimeIndex.dayofweek
DatetimeIndex.weekday
DatetimeIndex.quarter
DatetimeIndex.tz
DatetimeIndex.freq
DatetimeIndex.freqstr
DatetimeIndex.is_month_start
DatetimeIndex.is_month_end
DatetimeIndex.is_quarter_start
DatetimeIndex.is_quarter_end
DatetimeIndex.is_year_start
DatetimeIndex.is_year_end
DatetimeIndex.is_leap_year
DatetimeIndex.inferred_freq
Selecting
~~~~~~~~~
.. autosummary::
:toctree: generated/
DatetimeIndex.indexer_at_time
DatetimeIndex.indexer_between_time
Time-specific operations
~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
DatetimeIndex.normalize
DatetimeIndex.strftime
DatetimeIndex.snap
DatetimeIndex.tz_convert
DatetimeIndex.tz_localize
DatetimeIndex.round
DatetimeIndex.floor
DatetimeIndex.ceil
DatetimeIndex.month_name
DatetimeIndex.day_name
Conversion
~~~~~~~~~~
.. autosummary::
:toctree: generated/
DatetimeIndex.to_period
DatetimeIndex.to_perioddelta
DatetimeIndex.to_pydatetime
DatetimeIndex.to_series
DatetimeIndex.to_frame
TimedeltaIndex
--------------
.. autosummary::
:toctree: generated/
:template: autosummary/class_without_autosummary.rst
TimedeltaIndex
Components
~~~~~~~~~~
.. autosummary::
:toctree: generated/
TimedeltaIndex.days
TimedeltaIndex.seconds
TimedeltaIndex.microseconds
TimedeltaIndex.nanoseconds
TimedeltaIndex.components
TimedeltaIndex.inferred_freq
Conversion
~~~~~~~~~~
.. autosummary::
:toctree: generated/
TimedeltaIndex.to_pytimedelta
TimedeltaIndex.to_series
TimedeltaIndex.round
TimedeltaIndex.floor
TimedeltaIndex.ceil
TimedeltaIndex.to_frame
.. currentmodule:: pandas
PeriodIndex
--------------
.. autosummary::
:toctree: generated/
:template: autosummary/class_without_autosummary.rst
PeriodIndex
Attributes
~~~~~~~~~~
.. autosummary::
:toctree: generated/
PeriodIndex.day
PeriodIndex.dayofweek
PeriodIndex.dayofyear
PeriodIndex.days_in_month
PeriodIndex.daysinmonth
PeriodIndex.end_time
PeriodIndex.freq
PeriodIndex.freqstr
PeriodIndex.hour
PeriodIndex.is_leap_year
PeriodIndex.minute
PeriodIndex.month
PeriodIndex.quarter
PeriodIndex.qyear
PeriodIndex.second
PeriodIndex.start_time
PeriodIndex.week
PeriodIndex.weekday
PeriodIndex.weekofyear
PeriodIndex.year
Methods
~~~~~~~
.. autosummary::
:toctree: generated/
PeriodIndex.asfreq
PeriodIndex.strftime
PeriodIndex.to_timestamp
PeriodIndex.tz_convert
PeriodIndex.tz_localize
Scalars
-------
Period
~~~~~~
.. autosummary::
:toctree: generated/
Period
Attributes
~~~~~~~~~~
.. autosummary::
:toctree: generated/
Period.day
Period.dayofweek
Period.dayofyear
Period.days_in_month
Period.daysinmonth
Period.end_time
Period.freq
Period.freqstr
Period.hour
Period.is_leap_year
Period.minute
Period.month
Period.ordinal
Period.quarter
Period.qyear
Period.second
Period.start_time
Period.week
Period.weekday
Period.weekofyear
Period.year
Methods
~~~~~~~
.. autosummary::
:toctree: generated/
Period.asfreq
Period.now
Period.strftime
Period.to_timestamp
Timestamp
~~~~~~~~~
.. autosummary::
:toctree: generated/
Timestamp
Properties
~~~~~~~~~~
.. autosummary::
:toctree: generated/
Timestamp.asm8
Timestamp.day
Timestamp.dayofweek
Timestamp.dayofyear
Timestamp.days_in_month
Timestamp.daysinmonth
Timestamp.fold
Timestamp.hour
Timestamp.is_leap_year
Timestamp.is_month_end
Timestamp.is_month_start
Timestamp.is_quarter_end
Timestamp.is_quarter_start
Timestamp.is_year_end
Timestamp.is_year_start
Timestamp.max
Timestamp.microsecond
Timestamp.min
Timestamp.minute
Timestamp.month
Timestamp.nanosecond
Timestamp.quarter
Timestamp.resolution
Timestamp.second
Timestamp.tz
Timestamp.tzinfo
Timestamp.value
Timestamp.week
Timestamp.weekofyear
Timestamp.year
Methods
~~~~~~~
.. autosummary::
:toctree: generated/
Timestamp.astimezone
Timestamp.ceil
Timestamp.combine
Timestamp.ctime
Timestamp.date
Timestamp.day_name
Timestamp.dst
Timestamp.floor
Timestamp.freq
Timestamp.freqstr
Timestamp.fromordinal
Timestamp.fromtimestamp
Timestamp.isocalendar
Timestamp.isoformat
Timestamp.isoweekday
Timestamp.month_name
Timestamp.normalize
Timestamp.now
Timestamp.replace
Timestamp.round
Timestamp.strftime
Timestamp.strptime
Timestamp.time
Timestamp.timestamp
Timestamp.timetuple
Timestamp.timetz
Timestamp.to_datetime64
Timestamp.to_julian_date
Timestamp.to_period
Timestamp.to_pydatetime
Timestamp.today
Timestamp.toordinal
Timestamp.tz_convert
Timestamp.tz_localize
Timestamp.tzname
Timestamp.utcfromtimestamp
Timestamp.utcnow
Timestamp.utcoffset
Timestamp.utctimetuple
Timestamp.weekday
Interval
~~~~~~~~
.. autosummary::
:toctree: generated/
Interval
Properties
~~~~~~~~~~
.. autosummary::
:toctree: generated/
Interval.closed
Interval.closed_left
Interval.closed_right
Interval.left
Interval.length
Interval.mid
Interval.open_left
Interval.open_right
Interval.right
Timedelta
~~~~~~~~~
.. autosummary::
:toctree: generated/
Timedelta
Properties
~~~~~~~~~~
.. autosummary::
:toctree: generated/
Timedelta.asm8
Timedelta.components
Timedelta.days
Timedelta.delta
Timedelta.freq
Timedelta.is_populated
Timedelta.max
Timedelta.microseconds
Timedelta.min
Timedelta.nanoseconds
Timedelta.resolution
Timedelta.seconds
Timedelta.value
Timedelta.view
Methods
~~~~~~~
.. autosummary::
:toctree: generated/
Timedelta.ceil
Timedelta.floor
Timedelta.isoformat
Timedelta.round
Timedelta.to_pytimedelta
Timedelta.to_timedelta64
Timedelta.total_seconds
.. _api.frequencies:
Frequencies
-----------
.. currentmodule:: pandas.tseries.frequencies
.. _api.offsets:
.. autosummary::
:toctree: generated/
to_offset
Window
------
.. currentmodule:: pandas.core.window
Rolling objects are returned by ``.rolling`` calls: :func:`pandas.DataFrame.rolling`, :func:`pandas.Series.rolling`, etc.
Expanding objects are returned by ``.expanding`` calls: :func:`pandas.DataFrame.expanding`, :func:`pandas.Series.expanding`, etc.
EWM objects are returned by ``.ewm`` calls: :func:`pandas.DataFrame.ewm`, :func:`pandas.Series.ewm`, etc.
Standard moving window functions
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. currentmodule:: pandas.core.window
.. autosummary::
:toctree: generated/
Rolling.count
Rolling.sum
Rolling.mean
Rolling.median
Rolling.var
Rolling.std
Rolling.min
Rolling.max
Rolling.corr
Rolling.cov
Rolling.skew
Rolling.kurt
Rolling.apply
Rolling.aggregate
Rolling.quantile
Window.mean
Window.sum
.. _api.functions_expanding:
Standard expanding window functions
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. currentmodule:: pandas.core.window
.. autosummary::
:toctree: generated/
Expanding.count
Expanding.sum
Expanding.mean
Expanding.median
Expanding.var
Expanding.std
Expanding.min
Expanding.max
Expanding.corr
Expanding.cov
Expanding.skew
Expanding.kurt
Expanding.apply
Expanding.aggregate
Expanding.quantile
Exponentially-weighted moving window functions
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. currentmodule:: pandas.core.window
.. autosummary::
:toctree: generated/
EWM.mean
EWM.std
EWM.var
EWM.corr
EWM.cov
GroupBy
-------
.. currentmodule:: pandas.core.groupby
GroupBy objects are returned by groupby calls: :func:`pandas.DataFrame.groupby`, :func:`pandas.Series.groupby`, etc.
Indexing, iteration
~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
GroupBy.__iter__
GroupBy.groups
GroupBy.indices
GroupBy.get_group
.. currentmodule:: pandas
.. autosummary::
:toctree: generated/
:template: autosummary/class_without_autosummary.rst
Grouper
.. currentmodule:: pandas.core.groupby
Function application
~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
GroupBy.apply
GroupBy.aggregate
GroupBy.transform
GroupBy.pipe
Computations / Descriptive Stats
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
GroupBy.all
GroupBy.any
GroupBy.bfill
GroupBy.count
GroupBy.cumcount
GroupBy.ffill
GroupBy.first
GroupBy.head
GroupBy.last
GroupBy.max
GroupBy.mean
GroupBy.median
GroupBy.min
GroupBy.ngroup
GroupBy.nth
GroupBy.ohlc
GroupBy.prod
GroupBy.rank
GroupBy.pct_change
GroupBy.size
GroupBy.sem
GroupBy.std
GroupBy.sum
GroupBy.var
GroupBy.tail
The following methods are available in both ``SeriesGroupBy`` and
``DataFrameGroupBy`` objects, but may differ slightly, usually in that
the ``DataFrameGroupBy`` version usually permits the specification of an
axis argument, and often an argument indicating whether to restrict
application to columns of a specific data type.
.. autosummary::
:toctree: generated/
DataFrameGroupBy.agg
DataFrameGroupBy.all
DataFrameGroupBy.any
DataFrameGroupBy.bfill
DataFrameGroupBy.corr
DataFrameGroupBy.count
DataFrameGroupBy.cov
DataFrameGroupBy.cummax
DataFrameGroupBy.cummin
DataFrameGroupBy.cumprod
DataFrameGroupBy.cumsum
DataFrameGroupBy.describe
DataFrameGroupBy.diff
DataFrameGroupBy.ffill
DataFrameGroupBy.fillna
DataFrameGroupBy.filter
DataFrameGroupBy.hist
DataFrameGroupBy.idxmax
DataFrameGroupBy.idxmin
DataFrameGroupBy.mad
DataFrameGroupBy.pct_change
DataFrameGroupBy.plot
DataFrameGroupBy.quantile
DataFrameGroupBy.rank
DataFrameGroupBy.resample
DataFrameGroupBy.shift
DataFrameGroupBy.size
DataFrameGroupBy.skew
DataFrameGroupBy.take
DataFrameGroupBy.tshift
The following methods are available only for ``SeriesGroupBy`` objects.
.. autosummary::
:toctree: generated/
SeriesGroupBy.nlargest
SeriesGroupBy.nsmallest
SeriesGroupBy.nunique
SeriesGroupBy.unique
SeriesGroupBy.value_counts
SeriesGroupBy.is_monotonic_increasing
SeriesGroupBy.is_monotonic_decreasing
The following methods are available only for ``DataFrameGroupBy`` objects.
.. autosummary::
:toctree: generated/
DataFrameGroupBy.corrwith
DataFrameGroupBy.boxplot
Resampling
----------
.. currentmodule:: pandas.core.resample
Resampler objects are returned by resample calls: :func:`pandas.DataFrame.resample`, :func:`pandas.Series.resample`.
Indexing, iteration
~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Resampler.__iter__
Resampler.groups
Resampler.indices
Resampler.get_group
Function application
~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Resampler.apply
Resampler.aggregate
Resampler.transform
Resampler.pipe
Upsampling
~~~~~~~~~~
.. autosummary::
:toctree: generated/
Resampler.ffill
Resampler.backfill
Resampler.bfill
Resampler.pad
Resampler.nearest
Resampler.fillna
Resampler.asfreq
Resampler.interpolate
Computations / Descriptive Stats
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Resampler.count
Resampler.nunique
Resampler.first
Resampler.last
Resampler.max
Resampler.mean
Resampler.median
Resampler.min
Resampler.ohlc
Resampler.prod
Resampler.size
Resampler.sem
Resampler.std
Resampler.sum
Resampler.var
Style
-----
.. currentmodule:: pandas.io.formats.style
``Styler`` objects are returned by :attr:`pandas.DataFrame.style`.
Styler Constructor
~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Styler
Styler.from_custom_template
Styler Attributes
~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Styler.env
Styler.template
Styler.loader
Style Application
~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Styler.apply
Styler.applymap
Styler.where
Styler.format
Styler.set_precision
Styler.set_table_styles
Styler.set_table_attributes
Styler.set_caption
Styler.set_properties
Styler.set_uuid
Styler.clear
Builtin Styles
~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Styler.highlight_max
Styler.highlight_min
Styler.highlight_null
Styler.background_gradient
Styler.bar
Style Export and Import
~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Styler.render
Styler.export
Styler.use
Styler.to_excel
Plotting
--------
.. currentmodule:: pandas.plotting
The following functions are contained in the `pandas.plotting` module.
.. autosummary::
:toctree: generated/
andrews_curves
bootstrap_plot
deregister_matplotlib_converters
lag_plot
parallel_coordinates
radviz
register_matplotlib_converters
scatter_matrix
.. currentmodule:: pandas
General utility functions
-------------------------
Working with options
~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
describe_option
reset_option
get_option
set_option
option_context
Testing functions
~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
testing.assert_frame_equal
testing.assert_series_equal
testing.assert_index_equal
Exceptions and warnings
~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
errors.DtypeWarning
errors.EmptyDataError
errors.OutOfBoundsDatetime
errors.ParserError
errors.ParserWarning
errors.PerformanceWarning
errors.UnsortedIndexError
errors.UnsupportedFunctionCall
Data types related functionality
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
api.types.union_categoricals
api.types.infer_dtype
api.types.pandas_dtype
Dtype introspection
.. autosummary::
:toctree: generated/
api.types.is_bool_dtype
api.types.is_categorical_dtype
api.types.is_complex_dtype
api.types.is_datetime64_any_dtype
api.types.is_datetime64_dtype
api.types.is_datetime64_ns_dtype
api.types.is_datetime64tz_dtype
api.types.is_extension_type
api.types.is_float_dtype
api.types.is_int64_dtype
api.types.is_integer_dtype
api.types.is_interval_dtype
api.types.is_numeric_dtype
api.types.is_object_dtype
api.types.is_period_dtype
api.types.is_signed_integer_dtype
api.types.is_string_dtype
api.types.is_timedelta64_dtype
api.types.is_timedelta64_ns_dtype
api.types.is_unsigned_integer_dtype
api.types.is_sparse
Iterable introspection
.. autosummary::
:toctree: generated/
api.types.is_dict_like
api.types.is_file_like
api.types.is_list_like
api.types.is_named_tuple
api.types.is_iterator
Scalar introspection
.. autosummary::
:toctree: generated/
api.types.is_bool
api.types.is_categorical
api.types.is_complex
api.types.is_datetimetz
api.types.is_float
api.types.is_hashable
api.types.is_integer
api.types.is_interval
api.types.is_number
api.types.is_period
api.types.is_re
api.types.is_re_compilable
api.types.is_scalar
Extensions
----------
These are primarily intended for library authors looking to extend pandas
objects.
.. currentmodule:: pandas
.. autosummary::
:toctree: generated/
api.extensions.register_dataframe_accessor
api.extensions.register_series_accessor
api.extensions.register_index_accessor
api.extensions.ExtensionDtype
api.extensions.ExtensionArray
.. This is to prevent warnings in the doc build. We don't want to encourage
.. these methods.
.. toctree::
:hidden:
generated/pandas.DataFrame.blocks
generated/pandas.DataFrame.as_matrix
generated/pandas.DataFrame.ix
generated/pandas.Index.asi8
generated/pandas.Index.data
generated/pandas.Index.flags
generated/pandas.Index.holds_integer
generated/pandas.Index.is_type_compatible
generated/pandas.Index.nlevels
generated/pandas.Index.sort
generated/pandas.Panel.agg
generated/pandas.Panel.aggregate
generated/pandas.Panel.blocks
generated/pandas.Panel.empty
generated/pandas.Panel.is_copy
generated/pandas.Panel.items
generated/pandas.Panel.ix
generated/pandas.Panel.major_axis
generated/pandas.Panel.minor_axis
generated/pandas.Series.asobject
generated/pandas.Series.blocks
generated/pandas.Series.from_array
generated/pandas.Series.ix
generated/pandas.Series.imag
generated/pandas.Series.real
|