- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想从时间戳中减去日期。settings.dataset_end_date
是一个 pandas._libs.tslibs.timestamps.Timestamp
引用['date_of_patent']
是一个pandas.core.series.Series
patent['date']
是一个 pandas.core.series.Series
我创建了一个示例代码,其中我已经执行了似乎工作正常的 dtypes 转换,但是当将其应用到我的完整数据集时,我收到了上面的错误。
```python
settings.dataset_end_date = pd.to_datetime('2019-01-01')
#Find citations and dates from 'uspatentcitation' and 'patent'
citation = citation.rename(columns={'citation_id': 'id', 'date_citation': 'date_of_patent', 'date_id': 'date_cited'})
# Find time between citation and target patent grant date
citation['delta_citation'] = (citation['date_cited'].subtract(citation['date_of_patent'])).dt.days/365
# Find the years available
citation['years_available'] = (settings.dataset_end_date - citation['date_of_patent']).dt.days/365
patent['years_available'] = (settings.dataset_end_date - patent['date']).dt.days/365
```
I expect column with differences in years
```python
____________________________________________________________________
Error_______________________________________________________________
OverflowError Traceback (most recent call last)
<ipython-input-70-300ff02274d2> in <module>()
5
6 # Find time between citation and target patent grant date
----> 7 citation['delta_citation'] = (citation['date_cited'] - citation['date_of_patent']).dt.days/365
8
9 # Find the years available (used for nulling where the dataset ends before a time could be reached)
/anaconda/envs/py35/lib/python3.5/site-packages/pandas/core/ops.py in wrapper(left, right)
1550 # test_dt64_series_add_intlike, which the index dispatching handles
1551 # specifically.
-> 1552 result = dispatch_to_index_op(op, left, right, pd.DatetimeIndex)
1553 return construct_result(left, result,
1554 index=left.index, name=res_name,
/anaconda/envs/py35/lib/python3.5/site-packages/pandas/core/ops.py in dispatch_to_index_op(op, left, right, index_class)
1189 left_idx = left_idx._shallow_copy(freq=None)
1190 try:
-> 1191 result = op(left_idx, right)
1192 except NullFrequencyError:
1193 # DatetimeIndex and TimedeltaIndex with freq == None raise ValueError
/anaconda/envs/py35/lib/python3.5/site-packages/pandas/core/ops.py in wrapper(left, right)
1550 # test_dt64_series_add_intlike, which the index dispatching handles
1551 # specifically.
-> 1552 result = dispatch_to_index_op(op, left, right, pd.DatetimeIndex)
1553 return construct_result(left, result,
1554 index=left.index, name=res_name,
/anaconda/envs/py35/lib/python3.5/site-packages/pandas/core/ops.py in dispatch_to_index_op(op, left, right, index_class)
1189 left_idx = left_idx._shallow_copy(freq=None)
1190 try:
-> 1191 result = op(left_idx, right)
1192 except NullFrequencyError:
1193 # DatetimeIndex and TimedeltaIndex with freq == None raise ValueError
/anaconda/envs/py35/lib/python3.5/site-packages/pandas/core/ops.py in rsub(left, right)
146
147 def rsub(left, right):
--> 148 return right - left
149
150
/anaconda/envs/py35/lib/python3.5/site-packages/pandas/core/indexes/datetimelike.py in __sub__(self, other)
499 def __sub__(self, other):
500 # dispatch to ExtensionArray implementation
--> 501 result = self._data.__sub__(maybe_unwrap_index(other))
502 return wrap_arithmetic_op(self, other, result)
503
/anaconda/envs/py35/lib/python3.5/site-packages/pandas/core/arrays/datetimelike.py in __sub__(self, other)
1273 elif is_datetime64_dtype(other) or is_datetime64tz_dtype(other):
1274 # DatetimeIndex, ndarray[datetime64]
-> 1275 result = self._sub_datetime_arraylike(other)
1276 elif is_period_dtype(other):
1277 # PeriodIndex
/anaconda/envs/py35/lib/python3.5/site-packages/pandas/core/arrays/datetimes.py in _sub_datetime_arraylike(self, other)
722 other_i8 = other.asi8
723 new_values = checked_add_with_arr(self_i8, -other_i8,
--> 724 arr_mask=self._isnan)
725 if self._hasnans or other._hasnans:
726 mask = (self._isnan) | (other._isnan)
/anaconda/envs/py35/lib/python3.5/site-packages/pandas/core/algorithms.py in checked_add_with_arr(arr, b, arr_mask, b_mask)
936
937 if to_raise:
--> 938 raise OverflowError("Overflow in int64 addition")
939 return arr + b
940
OverflowError: Overflow in int64 addition
I have updated my Pandas and if I only run this part of the code:
```python
# Find the years available
citation['years_available'] = (settings.dataset_end_date - citation['date_of_patent']).dt.days/365
patent['years_available'] = (settings.dataset_end_date - patent['date']).dt.days/365
```
I get the following error:
```python
/anaconda/envs/py35/lib/python3.5/site-packages/pandas/core/indexes/datetimelike.py in __sub__(self, other)
499 return super()._convert_scalar_indexer(key, kind=kind)
500
--> 501 @classmethod
502 def _add_datetimelike_methods(cls):
503 """/anaconda/envs/py35/lib/python3.5/site-packages/pandas/core/arrays/datetimelike.py in __sub__(self, other)
1253 return NotImplemented
1254
-> 1255 if is_timedelta64_dtype(result) and isinstance(result, np.ndarray):
1256 from pandas.core.arrays import TimedeltaArray
1257
/anaconda/envs/py35/lib/python3.5/site-packages/pandas/core/arrays/datetimes.py in _sub_datetimelike_scalar(self, other)
761
762 # -----------------------------------------------------------------
--> 763 # Comparison Methods
764
765 _create_comparison_method = classmethod(_dt_array_cmp)
/anaconda/envs/py35/lib/python3.5/site-packages/pandas/core/algorithms.py in checked_add_with_arr(arr, b, arr_mask, b_mask)
936 def checked_add_with_arr(arr, b, arr_mask=None, b_mask=None):
937 """
--> 938 Perform array addition that checks for underflow and overflow.
939
940 Performs the addition of an int64 array and an int64 integer (or array)
OverflowError: Overflow in int64 addition
最佳答案
检查您的日期时间列是否实际上是日期时间类型,否则在减去时间戳之前将其转换:
citation['date_of_patent'] = pd.to_datetime(citation['date_of_patent'])
citation['date_cited'] = pd.to_datetime(citation['date_cited'])
关于python - 如何从时间戳中减去充满日期的 pandas.core.series.Series ,以找到每行日期与该时间戳日期的差异?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57160764/
主要思想是将 EF Core nuget 包添加到 .NET Core 库项目,然后在一堆应用程序(例如 ASP.NET Core、Win 服务、控制台应用程序)中使用该库,而无需在每个应用程序中配置
我想要实现的是编写一个简单的.net核心后台工作程序(.net core 3.1)的代码,在该工作程序作为Windows服务运行时,我在其中将数据写入SQL Server数据库(通过EF Core 3
关于 .Net Core SDK download page 二进制文件有什么用?它与安装程序有何不同? 最佳答案 二进制文件是 .NET Core 的编译代码。它们拥有运行 .NET Core 所需
.NET Core 和 Entity Framework Core 之间的区别?我们可以在 .NET Core 中使用 Entity Framework Core 吗?两者都有什么优势? 最佳答案 E
.NET Core 和 ASP.NET Core 到底有什么区别? 它们是相互排斥的吗?我听说 ASP.NET Core 是基于 .NET Core 构建的,但它也可以基于完整的 .NET 框架构建。
我对 ASP.NET Core 开发完全陌生。我正在尝试使用单个模型和 mysql 创建一个简单的 asp.net core Web api 来存储模型数据,然后我想使用 Swagger 将其作为 R
.NET Core 和 Entity Framework Core 之间的区别?我们可以在 .NET Core 中使用 Entity Framework Core 吗?两者都有什么优势? 最佳答案 E
好吧,作为一个新的 .net 开发生态系统,我有点迷失在核心工具、版本等方面。 有人可以解释我之间的区别吗 VS 2015 核心工具预览版 x - See here .NET Core/SDK 与否
我已阅读有关如何通过信号器核心集线器从后台服务向客户端发送通知的文档。如何从客户端接收到后台服务的通知? 后台服务应该只是一个单例。 public class Startup { public
关闭。这个问题是opinion-based .它目前不接受答案。 想改善这个问题吗?更新问题,以便可以通过 editing this post 用事实和引文回答问题. 4年前关闭。 Improve t
非常简单的问题: 我正在尝试创建一个像这样的谓词构建器: var predicate = PredicateBuilder.False(); 但似乎在Net Core和EF Core中不可用。
在 .NET Core 自包含应用程序 中...我们需要在 project.json 中指定运行时 (RID) 我们希望我们的应用程序针对...发布为什么会这样? .NET Core 是跨平台的,与我
如何用 iCloud Core Data 替换我现有的 Core Data?这是我的持久商店协调员: lazy var persistentStoreCoordinator: NSPersistent
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 2 年前。 Improv
今天我正在学习新的 ASP.net 核心 API 3.1,我想将我的旧网站从 MVC4 转移到 Web API。除了一件事,一切都很好。数据库连接。在我的旧网站中,我为每个客户端(10/15 数据库)
我在 Visual Studio 2015 Update 3 和 .NET Core 1.0 中工作。我有一个 .NETCoreApp v1.0 类型的 Web API 项目。当我添加一个 .NET
我一直在尝试遵循 Ben Cull ( http://benjii.me/2016/06/entity-framework-core-migrations-for-class-library-proj
当我打开我的 vs 代码程序时,我收到以下消息: 无法找到 .NET Core SDK。 .NET Core 调试将不会启用。确保 .NET Core SDK 已安装并且在路径上。 如果我安装甚至卸载
我偶然发现了一个非常奇怪的问题。每当 Web 应用程序启动时,dotnet.exe 都会使用相当多的内存(大约 300M)。然而,当它触及某些部分时(我感觉这与 EF Core 使用有关),它会在短时
ASP.NET Core Web (.NET Core) 与 ASP.NET Core Web (.NET Framework) 有什么区别? .NET Framework 是否提供 similar
我是一名优秀的程序员,十分优秀!