- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在编写一个脚本,在 x 轴上绘制一些带有日期的数据(在 matplotlib 中)。我需要根据这些日期创建一个 numpy.linspace
,以便之后创建样条曲线。有可能吗?
我尝试过的:
import datetime
import numpy as np
dates = [
datetime.datetime(2015, 7, 2, 0, 31, 41),
datetime.datetime(2015, 7, 2, 1, 35),
datetime.datetime(2015, 7, 2, 2, 37, 9),
datetime.datetime(2015, 7, 2, 3, 59, 16),
datetime.datetime(2015, 7, 2, 5, 2, 23)
]
x = np.linspace(min(dates), max(dates), 500)
它抛出这个错误:
TypeError: unsupported operand type(s) for *: 'datetime.datetime' and 'float'
我也尝试过将 datetime
转换为 np.datetime64
,但效果不佳:
dates = [np.datetime64(i) for i in dates]
x = np.linspace(min(dates), max(dates), 500)
错误:
TypeError: ufunc multiply cannot use operands with types dtype('<M8[us]') and dtype('float64')
最佳答案
正如@Joooeey 和@Ehtesh Choudhury 所指出的,pandas
现在有 date_range
,这使得创建类似 numpy.linspace
的时间序列变得更加简单。
t = pd.date_range(start='2022-03-10',
end='2022-03-15',
periods=5)
如果将此时间序列作为 numpy
数组很重要,只需
>>> t.values
array(['2022-03-10T00:00:00.000000000', '2022-03-11T06:00:00.000000000',
'2022-03-12T12:00:00.000000000', '2022-03-13T18:00:00.000000000',
'2022-03-15T00:00:00.000000000'], dtype='datetime64[ns]')
您是否考虑过使用 pandas
?使用来自 this possible duplicate question 的方法, 你可以通过以下方式使用 np.linspace
import pandas as pd
start = pd.Timestamp('2015-07-01')
end = pd.Timestamp('2015-08-01')
t = np.linspace(start.value, end.value, 100)
t = pd.to_datetime(t)
获取线性时间序列的np.array
In [3]: np.asarray(t)
Out[3]:
array(['2015-06-30T17:00:00.000000000-0700',
'2015-07-01T00:30:54.545454592-0700',
'2015-07-01T08:01:49.090909184-0700',
...
'2015-07-31T01:58:10.909090816-0700',
'2015-07-31T09:29:05.454545408-0700',
'2015-07-31T17:00:00.000000000-0700'], dtype='datetime64[ns]')
关于python - 从日期时间创建 numpy linspace,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37964100/
我遇到了 np.linspace() 的问题,我不知道为什么它会这样。我的代码如下所示: x = linspace(0, 6, 3) print 'x = ', x # prints the
我正在尝试编写一个类似版本的 python 的 numpy.linspace 函数。 double linspace(int a, int b, int c){ double line[c];
如下所示: ? 1
我有一个像这样的 Pandas 数据框 a b c 0 0.5 10 7 1 1.0 6 6 2 2.0 1 7 3 2.5 6 -5 4 3.5 9
我想生成 0 到 1 之间均匀间隔的 50 个数字 首先,我尝试使用 numpy.arange(0,1,0.02),下面是我得到的输出。 [0. 0.02 0.04 0.06 0.08 0.1
我想生成一个 n x 3 矩阵,其中 n 是像素数(宽 * 高)。 x = linspace(-1, 1, width) y = linspace(-1, 1, height) r = 1.0 vie
在我的项目中,编译器提示以下(以及许多其他类似的)代码片段: Eigen::ArrayXf window = Eigen::ArrayXf::LinSpaced(2*M
我有一组想要执行的方程: x = np.linspace(0, 2, 3) y = np.linspace(x, x+2, 3) 然后我想用一个计算来填充二维数组: a = 2*x + y 例如,给定
我有一个带有直方图的函数,绘制如下: import matplotlib.pyplot as plt import numpy as np lin = np.linspace(min(foo), ma
我正在尝试在 for 循环中使用 linspace。我想要 0 到 10 之间的 0.5 间隔。看来 z_bin 正在正确执行。 我的问题:如何在 for 循环中正确使用 linspace 来代替注释
所以我对 linspace 有点问题。我想生成一个数字数组,例如: [0.000001, 0.00001, 0.0001 , 0.001 ,0 .01 , 0.1] 所以我尝试了以下代码: alpha
我希望有一个生成器函数,它返回一条线上的点,给定一个最小距离 k。这很简单,可以使用 numpy 完成,如下所示: points = np.linspace(start, end, k) 但是,我想生
这个问题已经有答案了: How to avoid floating point errors? [duplicate] (2 个回答) 已关闭 4 年前。 我正在尝试使用linspace等间隔闭区间。
使用 MATLAB,我想在数组中的每个点之间进行线性插值。 使用 interpolate 将以非线性方式进行。我想做的是类似于产生低通滤波器系数。 我想出了一个解决方案,但我想避免使用 for 循环:
我一直在研究一种在并行处理中反转拉普拉斯变换的算法(即同时积分 s 空间中的多个拉普拉斯函数),但我知道一个事实,即并行处理不是问题,因为实现此方法是为了解决问题。但问题仍然存在,本质上我的代码一遍又
这样写有什么好处吗 t = linspace(0,20,21) 结束 t = 0:1:20 ? 我理解前者产生一个向量,就像第一个一样。 谁能告诉我 linspace 在 t = 0:1:20 上有用
我对 python 很陌生,在使用 linspace 例程绘制高斯函数图时遇到困难。 (我不想使用 numpy)。 """plot a normalized gaussian function """
这个问题已经有答案了: Use of None in Array indexing in Python (2 个回答) 已关闭 7 年前。 我读过一段代码是这样的 x = np.linspace(0,
np.linspace(10**3, 10**6, num=5, dtype=np.int16) 产量 array([ 1000, -11394, -23788, 29354, 16960],
有人可以用 numpy.linspace 解释这个舍入问题吗? import numpy as np np.linspace(0, 1, 6) == np.around( np.linspace(0,
我是一名优秀的程序员,十分优秀!