搞怪寒风

文章
3
资源
0
加入时间
3年0月8天

量化交易 获取获取上市公司年报

tushare有一个函数, ts.get_report_data(年份,季度), 可以获取每一年的季度的业绩。如果想要获取上市公司的年报,只要吧季度参数改为4即可 例如 要获取 中国银行的2016年的年报df=ts.get_report_data(2016,4)print df[df['code']=='601988']输出的结果如下:

Vue 组件封装简单案例——小白入门

今天初步接触了 Vue 中的组件封装,将写好的公用组件封装在 src 的 components 文件夹下,在 views 文件夹下的 .vue 文件可以进行调用以最简单的 button 按钮封装为例,在 components 文件夹新建ComponentsPractice.vue文件<template> <button @click="show">我是组件封装按钮</button>&

OMNET++子模块与外部接口

OMNET++在定义网络(network)或复合模块(module)A时,其子模块可能为其他复合模块B的对象。此时,在A中无法访问B的子模块,因此,若B的子模块与A有接口,则需定义B的外部接口。simple C{ gates: inout cg[];}module B{ gates: inout bg[]; submodules: c1 C...