@@ -320,7 +320,7 @@ class DataFrame(NDFrame):
320320 DataFrame.from_records : Constructor from tuples, also record arrays.
321321 DataFrame.from_dict : From dicts of Series, arrays, or dicts.
322322 DataFrame.from_items : From sequence of (key, value) pairs
323- pandas. read_csv, pandas.read_table, pandas.read_clipboard.
323+ read_csv, pandas.read_table, pandas.read_clipboard.
324324
325325 Examples
326326 --------
@@ -735,7 +735,7 @@ def style(self):
735735
736736 See Also
737737 --------
738- pandas. io.formats.style.Styler
738+ io.formats.style.Styler
739739 """
740740 from pandas .io .formats .style import Styler
741741 return Styler (self )
@@ -1417,7 +1417,7 @@ def to_gbq(self, destination_table, project_id=None, chunksize=None,
14171417 See Also
14181418 --------
14191419 pandas_gbq.to_gbq : This function in the pandas-gbq library.
1420- pandas. read_gbq : Read a DataFrame from Google BigQuery.
1420+ read_gbq : Read a DataFrame from Google BigQuery.
14211421 """
14221422 from pandas .io import gbq
14231423 return gbq .to_gbq (
@@ -1843,14 +1843,14 @@ def from_csv(cls, path, header=0, sep=',', index_col=0, parse_dates=True,
18431843 Read CSV file.
18441844
18451845 .. deprecated:: 0.21.0
1846- Use :func:`pandas. read_csv` instead.
1846+ Use :func:`read_csv` instead.
18471847
1848- It is preferable to use the more powerful :func:`pandas. read_csv`
1848+ It is preferable to use the more powerful :func:`read_csv`
18491849 for most general purposes, but ``from_csv`` makes for an easy
18501850 roundtrip to and from a file (the exact counterpart of
18511851 ``to_csv``), especially with a DataFrame of time series data.
18521852
1853- This method only differs from the preferred :func:`pandas. read_csv`
1853+ This method only differs from the preferred :func:`read_csv`
18541854 in some defaults:
18551855
18561856 - `index_col` is ``0`` instead of ``None`` (take first column as index
@@ -1887,7 +1887,7 @@ def from_csv(cls, path, header=0, sep=',', index_col=0, parse_dates=True,
18871887
18881888 See Also
18891889 --------
1890- pandas. read_csv
1890+ read_csv
18911891 """
18921892
18931893 warnings .warn ("from_csv is deprecated. Please use read_csv(...) "
@@ -2504,7 +2504,7 @@ def memory_usage(self, index=True, deep=False):
25042504 numpy.ndarray.nbytes : Total bytes consumed by the elements of an
25052505 ndarray.
25062506 Series.memory_usage : Bytes consumed by a Series.
2507- pandas. Categorical : Memory-efficient array for string values with
2507+ Categorical : Memory-efficient array for string values with
25082508 many repeated values.
25092509 DataFrame.info : Concise summary of a DataFrame.
25102510
@@ -2987,7 +2987,7 @@ def query(self, expr, inplace=False, **kwargs):
29872987 Whether the query should modify the data in place or return
29882988 a modified copy.
29892989 **kwargs
2990- See the documentation for :func:`pandas. eval` for complete details
2990+ See the documentation for :func:`eval` for complete details
29912991 on the keyword arguments accepted by :meth:`DataFrame.query`.
29922992
29932993 .. versionadded:: 0.18.0
@@ -3011,7 +3011,7 @@ def query(self, expr, inplace=False, **kwargs):
30113011 multidimensional key (e.g., a DataFrame) then the result will be passed
30123012 to :meth:`DataFrame.__getitem__`.
30133013
3014- This method uses the top-level :func:`pandas. eval` function to
3014+ This method uses the top-level :func:`eval` function to
30153015 evaluate the passed query.
30163016
30173017 The :meth:`~pandas.DataFrame.query` method uses a slightly
@@ -3098,7 +3098,7 @@ def eval(self, expr, inplace=False, **kwargs):
30983098
30993099 .. versionadded:: 0.18.0.
31003100 kwargs : dict
3101- See the documentation for :func:`~pandas. eval` for complete details
3101+ See the documentation for :func:`eval` for complete details
31023102 on the keyword arguments accepted by
31033103 :meth:`~pandas.DataFrame.query`.
31043104
@@ -3113,12 +3113,12 @@ def eval(self, expr, inplace=False, **kwargs):
31133113 of a frame.
31143114 DataFrame.assign : Can evaluate an expression or function to create new
31153115 values for a column.
3116- pandas. eval : Evaluate a Python expression as a string using various
3116+ eval : Evaluate a Python expression as a string using various
31173117 backends.
31183118
31193119 Notes
31203120 -----
3121- For more details see the API documentation for :func:`~pandas. eval`.
3121+ For more details see the API documentation for :func:`~eval`.
31223122 For detailed examples see :ref:`enhancing performance with eval
31233123 <enhancingperf.eval>`.
31243124
@@ -3957,7 +3957,7 @@ def rename(self, *args, **kwargs):
39573957
39583958 See Also
39593959 --------
3960- pandas. DataFrame.rename_axis
3960+ DataFrame.rename_axis
39613961
39623962 Examples
39633963 --------
@@ -6203,11 +6203,11 @@ def _gotitem(self,
62036203 --------
62046204 DataFrame.apply : Perform any type of operations.
62056205 DataFrame.transform : Perform transformation type operations.
6206- pandas. core.groupby.GroupBy : Perform operations over groups.
6207- pandas. core.resample.Resampler : Perform operations over resampled bins.
6208- pandas. core.window.Rolling : Perform operations over rolling window.
6209- pandas. core.window.Expanding : Perform operations over expanding window.
6210- pandas. core.window.EWM : Perform operation over exponential weighted
6206+ core.groupby.GroupBy : Perform operations over groups.
6207+ core.resample.Resampler : Perform operations over resampled bins.
6208+ core.window.Rolling : Perform operations over rolling window.
6209+ core.window.Expanding : Perform operations over expanding window.
6210+ core.window.EWM : Perform operation over exponential weighted
62116211 window.
62126212 """ )
62136213
@@ -6559,7 +6559,7 @@ def append(self, other, ignore_index=False,
65596559
65606560 See Also
65616561 --------
6562- pandas. concat : General function to concatenate DataFrame, Series
6562+ concat : General function to concatenate DataFrame, Series
65636563 or Panel objects.
65646564
65656565 Notes
@@ -7069,10 +7069,10 @@ def cov(self, min_periods=None):
70697069
70707070 See Also
70717071 --------
7072- pandas. Series.cov : Compute covariance with another Series.
7073- pandas. core.window.EWM.cov: Exponential weighted sample covariance.
7074- pandas. core.window.Expanding.cov : Expanding sample covariance.
7075- pandas. core.window.Rolling.cov : Rolling sample covariance.
7072+ Series.cov : Compute covariance with another Series.
7073+ core.window.EWM.cov: Exponential weighted sample covariance.
7074+ core.window.Expanding.cov : Expanding sample covariance.
7075+ core.window.Rolling.cov : Rolling sample covariance.
70767076
70777077 Notes
70787078 -----
0 commit comments