泰恩数据-专注数据技术泰恩数据

我的文章 第17页

变量写入文件及读取

阅读(772)

使用json模块实现变量写入文件及读取。 import json a = {'a':[12,53,96,78,11],'b':[5,5,5,5,5],'c':'测试'} filename = 'a.json' with open(filen...

带if循环的列表生成式

阅读(829)

带if循环的列表生成式有以下有两种形式: 1、[exp for x in data if condition] data数据中只有满足if条件的才会被留下,并将按照exp处理,最终生成一个数据列表。 2、[exp1 if condition...

Python 导入目录中的py文件-泰恩数据

Python 导入目录中的py文件

阅读(683)

本文主要介绍在项目中如何导入其他文件夹已经保存的py文件。假设有如下目录结构: — dir0   | file1.py   | file2.py   | dir3    | file3.py   | dir4    | file...

Pandas时间格式处理-泰恩数据

Pandas时间格式处理

阅读(731)

pandas.to_datetime()函数可以用来批量进行日期数据转换(string格式转换为datetime格式) import pandas as pd df = pd.DataFrame({'原日期':['14-Feb-20','0...

付息次数对债券价值的影响-泰恩数据

付息次数对债券价值的影响

阅读(785)

有一债券面值为1000元,票面利率8%,5年到期。假设必要报酬率为6%或10%,即溢价或折价发行,债券价值随付息次数怎么变化? import numpy as np import numpy_financial as npf import ...

连续复利利率的计算

阅读(1070)

什么是连续复利 当m=1时所对应的利率被称为等值年利率(equivalent annual interest rate)。当m趋于正无穷大(m→+∞)时,就称为连续复利(continuous compounding),对应的利率称为“连续复...

复利频次对投资终值的影响-泰恩数据

复利频次对投资终值的影响

阅读(849)

名义利率一定情况下,复利频次越多投资终值越大,但是终值会有一个极限值。 F = P\times(1+{{r}\over{m}})^{mn} import numpy as np import matplotlib.pyplot as plt...

Matplotlib绘图基础1-泰恩数据

Matplotlib绘图基础1

阅读(749)

import matplotlib.pyplot as plt #导入作图库 import numpy as np #导入numpy %matplotlib inline plt.rcParams["font.sans-serif"] = ...