Home
last modified time | relevance | path

Searched refs:datetime64 (Results 201 – 225 of 393) sorted by relevance

12345678910>>...16

/dports/math/py-pandas/pandas-1.2.5/doc/source/whatsnew/
H A Dv0.16.1.rst308 - Allow conversion of values with dtype ``datetime64`` or ``timedelta64`` to strings using ``astype…
310 - ``Period`` now accepts ``datetime64`` as value input. (:issue:`9054`)
452 - Bug in ``where`` when dtype is ``datetime64/timedelta64``, but dtype of other is not (:issue:`980…
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/series/indexing/
H A Dtest_indexing.py579 (np.datetime64("NaT", "ns"), True),
611 (np.datetime64("NaT", "ns"), False),
/dports/devel/py-numba/numba-0.51.2/docs/source/developer/
H A Ddispatching.rst121 For non-so-trivial types (imagine a tuple, or a Numpy ``datetime64`` array,
210 ``datetime64``, or a C-contiguous array and a Fortran-contiguous array).
/dports/science/py-cirq-aqt/Cirq-0.12.0/cirq-core/cirq/work/
H A Dobservable_measurement_data.py266 self.timestamps = np.append(self.timestamps, [np.datetime64(datetime.datetime.now())])
/dports/science/py-cirq-pasqal/Cirq-0.13.1/cirq-core/cirq/work/
H A Dobservable_measurement_data.py285 self.timestamps = np.append(self.timestamps, [np.datetime64(datetime.datetime.now())])
/dports/science/py-cirq-core/Cirq-0.13.1/cirq-core/cirq/work/
H A Dobservable_measurement_data.py285 self.timestamps = np.append(self.timestamps, [np.datetime64(datetime.datetime.now())])
/dports/science/py-cirq-google/Cirq-0.13.0/cirq-core/cirq/work/
H A Dobservable_measurement_data.py285 self.timestamps = np.append(self.timestamps, [np.datetime64(datetime.datetime.now())])
/dports/science/py-cirq-ionq/Cirq-0.13.1/cirq-core/cirq/work/
H A Dobservable_measurement_data.py285 self.timestamps = np.append(self.timestamps, [np.datetime64(datetime.datetime.now())])
/dports/math/py-numpy/numpy-1.20.3/numpy/typing/tests/data/reveal/
H A Darithmetic.py13 dt = np.datetime64(0, "D")
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/frame/methods/
H A Dtest_select_dtypes.py79 exclude = (np.datetime64,)
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/indexes/datetimes/
H A Dtest_misc.py383 arr = np.array([np.datetime64("2012-02-15T12:00:00.000000000")])
/dports/math/py-pandas/pandas-1.2.5/pandas/core/arrays/
H A Dfloating.py390 kwargs = {"na_value": np.datetime64("NaT")}
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/arithmetic/
H A Dtest_datetime64.py379 [datetime(2016, 1, 1), Timestamp("2016-01-01"), np.datetime64("2016-01-01")],
385 if isinstance(other, np.datetime64):
471 np.datetime64("nat"),
642 [datetime(2016, 1, 1), Timestamp("2016-01-01"), np.datetime64("2016-01-01")],
957 dt64 = np.datetime64("2013-01-01")
2191 np.datetime64("2011-01-01"),
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/frame/indexing/
H A Dtest_indexing.py1118 [13, np.datetime64("2013-01-01T00:00:00")],
1119 [14, np.datetime64("2014-01-01T00:00:00")],
1428 df.loc[0:1, "c"] = np.datetime64("2008-08-08")
1448 df["H"] = np.datetime64("NaT")
/dports/multimedia/navidrome/navidrome-0.40.0/vendor/github.com/ClickHouse/clickhouse-go/
H A Dclickhouse_test.go93 datetime64 DateTime64,
116 datetime64,
158 datetime64,
/dports/devel/py-xarray/xarray-0.20.1/xarray/plot/
H A Dplot.py456 if np.issubdtype(xplt.dtype, np.datetime64):
1246 if np.issubdtype(xplt.dtype, np.datetime64):
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/frame/
H A Dtest_block_internals.py225 df["dt1"] = np.datetime64("2013-01-01")
/dports/graphics/py-plotly/plotly-4.14.3/plotly/express/
H A D_imshow.py274 if np.issubdtype(img.coords[ax].dtype, np.datetime64):
/dports/math/py-pandas/pandas-1.2.5/pandas/_libs/tslibs/
H A Doffsets.pyx255 # > np.datetime64(dt.datetime(2013,5,1),dtype='datetime64[D]')
256 # numpy.datetime64('2013-05-01T02:00:00.000000+0200')
257 # Thus astype is needed to cast datetime to datetime64[D]
264 dt = np.int64(dt).astype('datetime64[ns]')
266 dt = np.datetime64(dt)
267 if dt.dtype.name != "datetime64[D]":
268 dt = dt.astype("datetime64[D]")
1052 ndarray[datetime64[ns]]
1076 dt64other = shifted.view("datetime64[ns]")
3230 np_dt = np.datetime64(date_in.date())
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/python/pyarrow/tests/
H A Dtest_array.py1894 n = np.datetime64('NaT', unit)
1895 x = np.datetime64('2017-01-01 01:01:01.111111111', unit)
1896 y = np.datetime64('2018-11-22 12:24:48.111111111', unit)
1907 n = np.datetime64('NaT')
1908 x = np.datetime64('2017-01-01 01:01:01.111111111')
1909 y = np.datetime64('2018-11-22 12:24:48.111111111')
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/groupby/
H A Dtest_apply.py662 "datetime": [np.datetime64("2017-02-01 00:00:00")] * 3,
675 "date": [np.datetime64("2017-02-01 00:00:00")] * 3,
/dports/math/py-matplotlib/matplotlib-3.4.3/doc/api/prev_api_changes/
H A Dapi_changes_2.1.0.rst103 `datetime.date` to `numpy.datetime64` for better portability across Python
104 versions. Note that Matplotlib does not fully support `numpy.datetime64` as
/dports/science/py-cirq-aqt/Cirq-0.12.0/cirq-core/cirq/
H A D_compat.py46 if np.issubdtype(value.dtype, np.datetime64):
/dports/science/py-cirq-core/Cirq-0.13.1/cirq-core/cirq/
H A D_compat.py47 if np.issubdtype(value.dtype, np.datetime64):
/dports/science/py-cirq-pasqal/Cirq-0.13.1/cirq-core/cirq/
H A D_compat.py47 if np.issubdtype(value.dtype, np.datetime64):

12345678910>>...16