@@ -832,8 +832,8 @@ cdef class _Timestamp(ABCTimestamp):
832
832
833
833
See Also
834
834
--------
835
- pandas. Timestamp.day_name : Returns the name of the day of the week.
836
- pandas. Timestamp.strftime : Returns a formatted string of the Timestamp.
835
+ Timestamp.day_name : Returns the name of the day of the week.
836
+ Timestamp.strftime : Returns a formatted string of the Timestamp.
837
837
datetime.datetime.strftime : Returns a string representing the date and time.
838
838
839
839
Examples
@@ -942,8 +942,8 @@ cdef class _Timestamp(ABCTimestamp):
942
942
943
943
See Also
944
944
--------
945
- pandas. Timestamp.month : Returns the month of the `Timestamp`.
946
- pandas. Timestamp.year : Returns the year of the `Timestamp`.
945
+ Timestamp.month : Returns the month of the `Timestamp`.
946
+ Timestamp.year : Returns the year of the `Timestamp`.
947
947
948
948
Examples
949
949
--------
@@ -1023,9 +1023,9 @@ cdef class _Timestamp(ABCTimestamp):
1023
1023
1024
1024
See Also
1025
1025
--------
1026
- pandas. Timestamp.floor : Rounds `Timestamp` down to the nearest frequency.
1027
- pandas. Timestamp.ceil : Rounds `Timestamp` up to the nearest frequency.
1028
- pandas. Timestamp.round : Rounds `Timestamp` to the nearest frequency.
1026
+ Timestamp.floor : Rounds `Timestamp` down to the nearest frequency.
1027
+ Timestamp.ceil : Rounds `Timestamp` up to the nearest frequency.
1028
+ Timestamp.round : Rounds `Timestamp` to the nearest frequency.
1029
1029
1030
1030
Examples
1031
1031
--------
@@ -1274,10 +1274,10 @@ cdef class _Timestamp(ABCTimestamp):
1274
1274
1275
1275
See Also
1276
1276
--------
1277
- pandas. Timestamp.fromtimestamp : Construct a `Timestamp` from a POSIX timestamp.
1277
+ Timestamp.fromtimestamp : Construct a `Timestamp` from a POSIX timestamp.
1278
1278
datetime.datetime.timestamp : Equivalent method from the `datetime` module.
1279
- pandas. Timestamp.to_pydatetime : Convert the `Timestamp` to a `datetime` object .
1280
- pandas. Timestamp.to_datetime64 : Converts `Timestamp` to `numpy.datetime64`.
1279
+ Timestamp.to_pydatetime : Convert the `Timestamp` to a `datetime` object .
1280
+ Timestamp.to_datetime64 : Converts `Timestamp` to `numpy.datetime64`.
1281
1281
1282
1282
Examples
1283
1283
--------
@@ -1414,9 +1414,9 @@ cdef class _Timestamp(ABCTimestamp):
1414
1414
1415
1415
See Also
1416
1416
--------
1417
- pandas. Timestamp : Represents a specific timestamp.
1418
- pandas. Period : Represents a span of time.
1419
- pandas. to_period : Converts an object to a Period.
1417
+ Timestamp : Represents a specific timestamp.
1418
+ Period : Represents a span of time.
1419
+ to_period : Converts an object to a Period.
1420
1420
1421
1421
Examples
1422
1422
--------
@@ -1572,15 +1572,15 @@ class Timestamp(_Timestamp):
1572
1572
Timestamp
1573
1573
A `Timestamp` object representing the specified ordinal date.
1574
1574
1575
+ See Also
1576
+ --------
1577
+ Timestamp : Represents a single timestamp, similar to `datetime`.
1578
+ to_datetime : Converts various types of data to datetime.
1579
+
1575
1580
Notes
1576
1581
-----
1577
1582
By definition there cannot be any tz info on the ordinal itself.
1578
1583
1579
- See Also
1580
- --------
1581
- pandas.Timestamp : Represents a single timestamp, similar to `datetime`.
1582
- pandas.to_datetime : Converts various types of data to datetime.
1583
-
1584
1584
Examples
1585
1585
--------
1586
1586
Convert an ordinal to a `Timestamp`:
@@ -1762,8 +1762,8 @@ class Timestamp(_Timestamp):
1762
1762
1763
1763
See Also
1764
1764
--------
1765
- pandas. Timestamp : Represents a single timestamp, similar to `datetime`.
1766
- pandas. to_datetime : Converts various types of data to datetime.
1765
+ Timestamp : Represents a single timestamp, similar to `datetime`.
1766
+ to_datetime : Converts various types of data to datetime.
1767
1767
datetime.datetime.fromtimestamp : Returns a datetime from a POSIX timestamp.
1768
1768
1769
1769
Examples
@@ -1836,7 +1836,7 @@ class Timestamp(_Timestamp):
1836
1836
See Also
1837
1837
--------
1838
1838
time.ctime : Return a string representing time in ctime format.
1839
- pandas. Timestamp : Represents a single timestamp, similar to `datetime`.
1839
+ Timestamp : Represents a single timestamp, similar to `datetime`.
1840
1840
datetime.datetime.ctime : Return a ctime style string from a datetime object .
1841
1841
1842
1842
Examples
@@ -1874,7 +1874,7 @@ class Timestamp(_Timestamp):
1874
1874
1875
1875
See Also
1876
1876
--------
1877
- pandas. Timestamp : Represents a single timestamp, similar to `datetime`.
1877
+ Timestamp : Represents a single timestamp, similar to `datetime`.
1878
1878
datetime.datetime.date : Extract the date component from a `datetime` object .
1879
1879
1880
1880
Examples
@@ -2066,7 +2066,7 @@ class Timestamp(_Timestamp):
2066
2066
See Also
2067
2067
--------
2068
2068
time.localtime : Converts a POSIX timestamp into a time tuple .
2069
- pandas. Timestamp : The `Timestamp` that represents a specific point in time.
2069
+ Timestamp : The `Timestamp` that represents a specific point in time.
2070
2070
datetime.datetime.timetuple : Equivalent method in the `datetime` module.
2071
2071
2072
2072
Examples
@@ -2115,8 +2115,8 @@ class Timestamp(_Timestamp):
2115
2115
See Also
2116
2116
--------
2117
2117
datetime.datetime.toordinal : Equivalent method in the `datetime` module.
2118
- pandas. Timestamp : The `Timestamp` that represents a specific point in time.
2119
- pandas. Timestamp.fromordinal : Create a `Timestamp` from an ordinal.
2118
+ Timestamp : The `Timestamp` that represents a specific point in time.
2119
+ Timestamp.fromordinal : Create a `Timestamp` from an ordinal.
2120
2120
2121
2121
Examples
2122
2122
--------
@@ -2181,8 +2181,8 @@ class Timestamp(_Timestamp):
2181
2181
2182
2182
See Also
2183
2183
--------
2184
- pandas. Timestamp : Represents a single timestamp, similar to `datetime`.
2185
- pandas. to_datetime : Converts various types of data to datetime.
2184
+ Timestamp : Represents a single timestamp, similar to `datetime`.
2185
+ to_datetime : Converts various types of data to datetime.
2186
2186
2187
2187
Examples
2188
2188
--------
@@ -2939,7 +2939,18 @@ default 'raise'
2939
2939
2940
2940
Returns
2941
2941
-------
2942
- Timestamp with fields replaced
2942
+ Timestamp
2943
+ A new `Timestamp` object with the specified fields replaced.
2944
+
2945
+ See Also
2946
+ --------
2947
+ Timestamp : Represents a single timestamp, similar to `datetime`.
2948
+ to_datetime : Converts various types of data to datetime.
2949
+
2950
+ Notes
2951
+ -----
2952
+ The `replace` method does not perform timezone conversions. If you need
2953
+ to convert the timezone, use the `tz_convert` method instead.
2943
2954
2944
2955
Examples
2945
2956
--------
@@ -3066,9 +3077,9 @@ default 'raise'
3066
3077
3067
3078
See Also
3068
3079
--------
3069
- pandas. Timestamp.toordinal : Return proleptic Gregorian ordinal.
3070
- pandas. Timestamp.timestamp : Return POSIX timestamp as float .
3071
- pandas. Timestamp : Represents a single timestamp.
3080
+ Timestamp.toordinal : Return proleptic Gregorian ordinal.
3081
+ Timestamp.timestamp : Return POSIX timestamp as float .
3082
+ Timestamp : Represents a single timestamp.
3072
3083
3073
3084
Examples
3074
3085
--------
0 commit comments