绘制特殊图表时,希望横轴显示自定义内容(如年份)而非坐标值 可以使用如xticks实现 import matplotlib.pyplot as plt plt.figure(tight_layout = True) x = range(10) h = [10, 3, 4, 8, 2, 6, 5, 1 ...
分类:
其他好文 时间:
2020-06-04 19:44:17
阅读次数:
66
1、@Import(AutoConfigurationPackages.Registrar.class) 初始SpringBoot 我们知道在SpringBoot 启动类上有一个@SpringBootApplication注解,配置类的加载就是从这里开始(源头),一起走起。 @SpringBootA ...
分类:
编程语言 时间:
2020-06-04 01:25:58
阅读次数:
89
异常: log4j:ERROR Could not find value for key log4j.appender.logServer.layout log4j:WARN File option not set for appender [logServer]. 2020-06-03 11:22 ...
分类:
编程语言 时间:
2020-06-03 12:00:31
阅读次数:
348
以下源码基于Spring 5.2.5版本 使用XML方式配置Spring应用时,web.xml中会配置一个Listener,如下: <display-name>Web Application</display-name> <context-param> <param-name>contextConf ...
分类:
编程语言 时间:
2020-06-02 19:24:11
阅读次数:
73
sonarqube && sonar-scanner link sonarqube download archive github-sonarqube sonarqube-7.9.3-lts sonarqube-lts-7.9 requirement link opt-env openjdk-11 ...
分类:
其他好文 时间:
2020-06-02 12:53:12
阅读次数:
58
Matplotlib 是一个 Python 的 2D绘图库 安装 pip install matplotlib 绘图的准备 1.添加Figure对象 2.添加Axes import matplotlib.pyplot as plt fig = plt.figure() ax = fig.add_su ...
分类:
编程语言 时间:
2020-06-01 13:31:56
阅读次数:
78
1、快捷键ctrl+shift+p 2、在按快捷键后的弹出框中输入configure然后回车查询 3、选择configure display language 如图 4、选择或者安装中文语言,如图 5、安装中文后重启,系统会自动提示重启,按照提示点击按钮就可以了。如图 ...
分类:
其他好文 时间:
2020-06-01 11:51:29
阅读次数:
58
吾生也有涯,而知也无涯。以有涯随无涯,殆已!入市有风险,投资需谨慎,本文不作为任何投资参考依据。前面通过形态和一些基本面的数据进行了选股,这篇文章就来研究一下相似度选股以及趋势选股吧。相似度我们一般比较在意股票的收盘价,比如均线或者各种指标如果需要计算一段序列值,我们一般选择收盘价作为序列中的值,就像5日均线计算的是五日的收盘价的均值一样。那么每天的收盘价就是一个个数字,一年的收盘价就是一串大概2
分类:
编程语言 时间:
2020-06-01 10:23:38
阅读次数:
98
使用的assimp库的版本为4.0.1,而CMake的版本为3.8.2。配置好source code和build the binaries的路径后,点击configure,选择【MingW Makefiles】以及【native compilers】选项。 先是报一堆dll找不到的问题。到mingw ...
分类:
其他好文 时间:
2020-05-30 10:50:19
阅读次数:
114
1.之前什么都没有做 直接下载Python3.7的包 tar -xzvf Python-3.7.2.tgz cd Python-3.7.2 ./configure --prefix=/usr/local/python3 make && make install 创建软连接 ln -s /usr/lo ...
分类:
编程语言 时间:
2020-05-28 19:26:12
阅读次数:
71