上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 43 下一页
摘要: Pycharm调试程序时,有时需要直接从第一个断点跳转至第二个断点,如果还是用单步调试的话就非常麻烦了,当然解决方法也很简单,点击“Dubug”,当程序停在第一个断点的时候,点击菜单栏的Run-> Resume Program即可跳转至第二个断点。 另外我们在调试的时候经常会用到这几个工具,所以很有 阅读全文
posted @ 2020-10-16 14:36 就是想学习 阅读(743) 评论(0) 推荐(0) 编辑
摘要: A.1 ndarray对象内幕 ndarray如何灵活的部分原因使每个数组对象都是一个数据块的分步视图。例如,数组arr[::2,::-1]如何做到不复制任何数据。 原因是ndarray不仅仅是一块内存和一个type,它还具有"跨步"信息,使数组能够以不同的步长在内部中移动。 更准确的说,ndarr 阅读全文
posted @ 2020-10-14 09:19 就是想学习 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 4.1 NumPy ndarray:多维数组对象 In [121]: data = np.random.randn(2,3) In [122]: data Out[122]: array([[ 0.54913133, 1.22840566, -0.2471307 ], [ 1.13488389, - 阅读全文
posted @ 2020-10-12 09:19 就是想学习 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 原链接:https://www.cnblogs.com/zuoshoushizi/p/8727773.html 随机抽样 (numpy.random) 简单的随机数据 rand(d0, d1, ..., dn) 随机值 >>> np.random.rand(3,2) array([[ 0.14022 阅读全文
posted @ 2020-10-10 21:05 就是想学习 阅读(218) 评论(0) 推荐(0) 编辑
摘要: NumPy入门 NumPy为Numerical Python的简写。 2.1 理解Python中的数据类型 Python中,类型是动态推断的。这意味着可以将任何类型的数据指定给任何变量 Python变量不仅是它们的值,还包括了关于值的类型的一些额外信息。 2.1.1Python整型不仅仅是一个整型 阅读全文
posted @ 2020-10-09 00:24 就是想学习 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 首先启动IPython shell 和Jupyter Notebook 在命令行输入ipython启动IPython mac启动Jupyter使用Python3 -m IPython notebook 在IPython中,符号?用于浏览文档,??用于浏览源代码,而Tab用于自动补全。 每一个Pyth 阅读全文
posted @ 2020-10-08 20:18 就是想学习 阅读(477) 评论(0) 推荐(0) 编辑
摘要: 官方链接:https://pypi.org/project/pytz/ Introduction pytz brings the Olson tz database into Python. This library allows accurate and cross platform timezo 阅读全文
posted @ 2020-09-30 21:03 就是想学习 阅读(969) 评论(0) 推荐(0) 编辑
摘要: 原文地址:https://www.backtrader.com/docu/timemgmt/ DateTime Management 日期时间管理 Up until release 1.5.0, backtrader used a direct approach to time management 阅读全文
posted @ 2020-09-30 15:43 就是想学习 阅读(915) 评论(0) 推荐(0) 编辑
摘要: # 描述符 + 元类 爽爆天 from collections import OrderedDict # 描述符的基类,通过类属性来指定参数 class Typed: # 赋值类型给子类继承用 _expected_type = type(None) def __init__(self, name=N 阅读全文
posted @ 2020-09-25 10:53 就是想学习 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://backtrader.com/blog/posts/2016-06-21-livedata-feed/live-data-feed/ Starting with release 1.5.0, backtrader supports Live Data Feeds and L 阅读全文
posted @ 2020-09-24 17:08 就是想学习 阅读(1395) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 43 下一页