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
|
.. currentmodule:: pandas
.. _api:
*************
API Reference
*************
.. _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
.. currentmodule:: pandas
HTML
~~~~
.. autosummary::
:toctree: generated/
read_html
HDFStore: PyTables (HDF5)
~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
read_hdf
HDFStore.put
HDFStore.append
HDFStore.get
HDFStore.select
SAS
~~~
.. autosummary::
:toctree: generated/
read_sas
SQL
~~~
.. autosummary::
:toctree: generated/
read_sql_table
read_sql_query
read_sql
Google BigQuery
~~~~~~~~~~~~~~~
.. currentmodule:: pandas.io.gbq
.. autosummary::
:toctree: generated/
read_gbq
to_gbq
.. currentmodule:: pandas
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
Top-level missing data
~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
isnull
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 evaluation
~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
eval
Testing
~~~~~~~
.. autosummary::
:toctree: generated/
test
.. _api.series:
Series
------
Constructor
~~~~~~~~~~~
.. currentmodule:: pandas
.. autosummary::
:toctree: generated/
Series
Attributes
~~~~~~~~~~
**Axes**
* **index**: axis labels
.. 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
Conversion
~~~~~~~~~~
.. autosummary::
:toctree: generated/
Series.astype
Series.copy
Series.isnull
Series.notnull
Indexing, iteration
~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Series.get
Series.at
Series.iat
Series.ix
Series.loc
Series.iloc
Series.__iter__
Series.iteritems
For more information on ``.at``, ``.iat``, ``.ix``, ``.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
Function application, GroupBy & Window
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Series.apply
Series.map
Series.groupby
Series.rolling
Series.expanding
Series.ewm
.. _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.unique
Series.nunique
Series.is_unique
Series.is_monotonic
Series.is_monotonic_increasing
Series.is_monotonic_decreasing
Series.value_counts
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.take
Series.tail
Series.truncate
Series.where
Series.mask
Missing data handling
~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Series.dropna
Series.fillna
Series.interpolate
Reshaping, sorting
~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Series.argsort
Series.reorder_levels
Series.sort_values
Series.sort_index
Series.sortlevel
Series.swaplevel
Series.unstack
Series.searchsorted
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
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.weekday_name
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
**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
CategoricalIndex.str
MultiIndex.str
DatetimeIndex.str
TimedeltaIndex.str
.. _api.categorical:
Categorical
~~~~~~~~~~~
If the Series is of dtype ``category``, ``Series.cat`` can be used to change the 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
To create a Series of dtype ``category``, use ``cat = s.astype("category")``.
The following two ``Categorical`` constructors are considered API but should only be used when
adding ordering information or special categories is need at creation time of the categorical data:
.. autosummary::
:toctree: generated/
:template: autosummary/class_without_autosummary.rst
Categorical
.. autosummary::
:toctree: generated/
Categorical.from_codes
``np.asarray(categorical)`` works by implementing the array interface. Be aware, that this converts
the Categorical back to a numpy array, so levels and order information is not preserved!
.. autosummary::
:toctree: generated/
Categorical.__array__
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.from_csv
Series.to_pickle
Series.to_csv
Series.to_dict
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
Sparse methods
~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
SparseSeries.to_coo
SparseSeries.from_coo
.. _api.dataframe:
DataFrame
---------
Constructor
~~~~~~~~~~~
.. autosummary::
:toctree: generated/
DataFrame
Attributes and underlying data
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
**Axes**
* **index**: row labels
* **columns**: column labels
.. autosummary::
:toctree: generated/
DataFrame.as_matrix
DataFrame.dtypes
DataFrame.ftypes
DataFrame.get_dtype_counts
DataFrame.get_ftype_counts
DataFrame.select_dtypes
DataFrame.values
DataFrame.axes
DataFrame.ndim
DataFrame.size
DataFrame.shape
DataFrame.memory_usage
Conversion
~~~~~~~~~~
.. autosummary::
:toctree: generated/
DataFrame.astype
DataFrame.convert_objects
DataFrame.copy
DataFrame.isnull
DataFrame.notnull
Indexing, iteration
~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
DataFrame.head
DataFrame.at
DataFrame.iat
DataFrame.ix
DataFrame.loc
DataFrame.iloc
DataFrame.insert
DataFrame.__iter__
DataFrame.iteritems
DataFrame.iterrows
DataFrame.itertuples
DataFrame.lookup
DataFrame.pop
DataFrame.tail
DataFrame.xs
DataFrame.isin
DataFrame.where
DataFrame.mask
DataFrame.query
For more information on ``.at``, ``.iat``, ``.ix``, ``.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.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.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.corr
DataFrame.corrwith
DataFrame.count
DataFrame.cov
DataFrame.cummax
DataFrame.cummin
DataFrame.cumprod
DataFrame.cumsum
DataFrame.describe
DataFrame.diff
DataFrame.eval
DataFrame.kurt
DataFrame.mad
DataFrame.max
DataFrame.mean
DataFrame.median
DataFrame.min
DataFrame.mode
DataFrame.pct_change
DataFrame.prod
DataFrame.quantile
DataFrame.rank
DataFrame.round
DataFrame.sem
DataFrame.skew
DataFrame.sum
DataFrame.std
DataFrame.var
Reindexing / Selection / Label manipulation
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
DataFrame.add_prefix
DataFrame.add_suffix
DataFrame.align
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_index
DataFrame.tail
DataFrame.take
DataFrame.truncate
.. _api.dataframe.missing:
Missing data handling
~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
DataFrame.dropna
DataFrame.fillna
DataFrame.replace
Reshaping, sorting, transposing
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
DataFrame.pivot
DataFrame.reorder_levels
DataFrame.sort_values
DataFrame.sort_index
DataFrame.sortlevel
DataFrame.nlargest
DataFrame.nsmallest
DataFrame.swaplevel
DataFrame.stack
DataFrame.unstack
DataFrame.T
DataFrame.to_panel
DataFrame.to_xarray
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.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_pickle
DataFrame.to_csv
DataFrame.to_hdf
DataFrame.to_sql
DataFrame.to_dict
DataFrame.to_excel
DataFrame.to_json
DataFrame.to_html
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
.. _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.isnull
Panel.notnull
Getting and setting
~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Panel.get_value
Panel.set_value
Indexing, iteration, slicing
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Panel.at
Panel.iat
Panel.ix
Panel.loc
Panel.iloc
Panel.__iter__
Panel.iteritems
Panel.pop
Panel.xs
Panel.major_xs
Panel.minor_xs
For more information on ``.at``, ``.iat``, ``.ix``, ``.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
Panel.fillna
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_xarray
Panel.to_clipboard
.. _api.panel4d:
Panel4D
-------
Constructor
~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Panel4D
Serialization / IO / Conversion
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Panel4D.to_xarray
Attributes and underlying data
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
**Axes**
* **labels**: axis 1; each label corresponds to a Panel contained inside
* **items**: axis 2; each item corresponds to a DataFrame contained inside
* **major_axis**: axis 3; the index (rows) of each of the DataFrames
* **minor_axis**: axis 4; the columns of each of the DataFrames
.. autosummary::
:toctree: generated/
Panel4D.values
Panel4D.axes
Panel4D.ndim
Panel4D.size
Panel4D.shape
Panel4D.dtypes
Panel4D.ftypes
Panel4D.get_dtype_counts
Panel4D.get_ftype_counts
Conversion
~~~~~~~~~~
.. autosummary::
:toctree: generated/
Panel4D.astype
Panel4D.copy
Panel4D.isnull
Panel4D.notnull
.. _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.dtype
Index.inferred_type
Index.is_all_dates
Index.shape
Index.nbytes
Index.ndim
Index.size
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.min
Index.max
Index.reindex
Index.repeat
Index.where
Index.take
Index.putmask
Index.set_names
Index.unique
Index.nunique
Index.value_counts
Index.fillna
Index.dropna
Conversion
~~~~~~~~~~
.. autosummary::
:toctree: generated/
Index.astype
Index.tolist
Index.to_datetime
Index.to_series
Sorting
~~~~~~~
.. autosummary::
:toctree: generated/
Index.argsort
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.get_indexer
Index.get_indexer_non_unique
Index.get_level_values
Index.get_loc
Index.get_value
Index.isin
Index.slice_indexer
Index.slice_locs
.. _api.categoricalindex:
CategoricalIndex
----------------
.. autosummary::
:toctree: generated/
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
.. _api.multiindex:
MultiIndex
----------
.. autosummary::
:toctree: generated/
MultiIndex
MultiIndex Components
~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
MultiIndex.from_arrays
MultiIndex.from_tuples
MultiIndex.from_product
MultiIndex.set_levels
MultiIndex.set_labels
MultiIndex.to_hierarchical
MultiIndex.is_lexsorted
MultiIndex.droplevel
MultiIndex.swaplevel
MultiIndex.reorder_levels
.. _api.datetimeindex:
DatetimeIndex
-------------
.. autosummary::
:toctree: generated/
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.weekday_name
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
Conversion
~~~~~~~~~~
.. autosummary::
:toctree: generated/
DatetimeIndex.to_datetime
DatetimeIndex.to_period
DatetimeIndex.to_perioddelta
DatetimeIndex.to_pydatetime
DatetimeIndex.to_series
TimedeltaIndex
--------------
.. autosummary::
:toctree: generated/
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
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.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.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/
Grouper
.. currentmodule:: pandas.core.groupby
Function application
~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
GroupBy.apply
GroupBy.aggregate
GroupBy.transform
Computations / Descriptive Stats
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
GroupBy.count
GroupBy.cumcount
GroupBy.first
GroupBy.head
GroupBy.last
GroupBy.max
GroupBy.mean
GroupBy.median
GroupBy.min
GroupBy.nth
GroupBy.ohlc
GroupBy.prod
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.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
The following methods are available only for ``DataFrameGroupBy`` objects.
.. autosummary::
:toctree: generated/
DataFrameGroupBy.corrwith
DataFrameGroupBy.boxplot
Resampling
----------
.. currentmodule:: pandas.tseries.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
Upsampling
~~~~~~~~~~
.. autosummary::
:toctree: generated/
Resampler.ffill
Resampler.backfill
Resampler.bfill
Resampler.pad
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.formats.style
``Styler`` objects are returned by :attr:`pandas.DataFrame.style`.
Constructor
~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Styler
Style Application
~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
Styler.apply
Styler.applymap
Styler.format
Styler.set_precision
Styler.set_table_styles
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
.. currentmodule:: pandas
General utility functions
-------------------------
Working with options
~~~~~~~~~~~~~~~~~~~~
.. autosummary::
:toctree: generated/
describe_option
reset_option
get_option
set_option
option_context
|