ipywidgets_未来价值和Ipywidgets

ipywidgets

How to use Ipywidgets to visualize future value with different interest rates.

如何使用Ipywidgets可视化不同利率下的未来价值。

There are some calculations that even being easy becoming better with a visualization of his terms. Moreover, the sooner we start investing the more gains we will have in the future. Of course, there are several other variables in the equation of “the game of saving resources for the future” but now two variables will be presented here: interest rate and time.

Ť这里有一些计算方法,甚至易于与他的条件的可视化变得更好。 此外,我们越早开始投资,将来将获得更多收益。 当然,也有“节约资源,为未来的游戏”的公式中其他几个变量,但现在两个变量将在这里介绍: 利率时间

未来价值 (Future Values)

The most basic principle of finance is: a dollar today is worth more than a dollar tomorrow. That means money has a time value.

财务的最基本原则是: 今天的一美元比明天的一美元值更多。 这意味着金钱具有时间价值。

If you invest $100 in a bank account that pays interest of rate 5% a year. In the first year, you will earn interest of 0.05 $100 $5 and the value of your investment will grow to $105:

如果您在银行帐户中投资100美元,该银行帐户的年利率为5%。 在第一年,您将获得0.05美元的利息$ 100 $ 5,您的投资价值将增加到$ 105:

Image for post

如果我们可以“看到”这一点? (And if we can “see” this?)

Now the same equation above can be presented using python. We can use the future value formula or utilize the library Numpy Financial .

现在,可以使用python呈现上述相同的方程式。 我们可以使用未来价值公式或使用Numpy Financial

The numpy financial module contains a function future value, .fv(rate, nper, pmt, pv), which allows you to calculate the future value of an investment as before with a few simple parameters:

numpy金融模块包含一个功能.fv(rate,nper,pmt,pv) ,它允许您像以前一样通过一些简单的参数来计算投资的值:

  • rate: the rate of return of the investment

    rate :投资回报率

  • nper: the lifespan of the investment

    nper :投资寿命

  • pmt: the (fixed) payment at the beginning or end of each period (which is 0 in our example)

    pmt :每个期间开始或结束时的(固定)付款(在我们的示例中为0)

  • pv: the present value of the investment

    pv :投资的现值

It is important to note that in this function call, you must pass a negative value into the pv parameter if it represents a negative cash flow (cash going out).

重要的是要注意,在此函数调用中,如果它表示负现金流量(现金支出),则必须将负值传递到pv参数中。

First, we must import the libraries:

首先,我们必须导入库:

# Importing the libraries
import numpy as np
import numpy_financial as npf
import matplotlib.pyplot as plt

Then, use Numpy’s .fv() function, calculate the future value of a $100 investment returning 5% per year for 2 years.

然后,使用Numpy的.fv()函数,计算100美元的投资在2年内每年返回5%的终值。

# Calculate investment
investment = npf.fv(rate=.05, nper=2, pmt=0, pv=-100)
print("$" + str(round(investment, 2)))$110.25

利率越高,您的储蓄增长越快 (The higher the interest rate, the faster your savings will grow)

Next, you’ll see how plot different interest rates (0%, 5%, 10%, and 15%) with an investment of $100 in the same graph.

接下来,您将看到如何在同一张图中绘制以100美元投资的不同利率(0%,5%,10%和15%)。

figure = figsize=(10,8)
y = [npf.fv(rate=np.linspace(0,0.15,num=4), nper=i, pmt=0, pv=-100) for i in range(21)]

Using the function np.linspace(0, 0.15 , num=4) at rate allows plot 4 curves(num=4), in a range between 0 and 0.15.

以速率使用函数np.linspace(0,0.15,num = 4)允许绘制4条曲线(num = 4),范围在0到0.15之间。

plt.plot(y)plt.legend(["r = 0%", "r = 5%","r = 10%" , "r = 15%"])plt.ylabel('Future value of $100, dollars')
plt.xlabel('years')

As the rates are plotted from a function, to write the legend as an array is a way to present the four rates.

由于比率是从函数中绘制的,因此将图例写为数组是表示这四个比率的一种方法。

Image for post
Figure 1 — Growth of an investment at different interest rates
图1 –不同利率下的投资增长

与Ipywidgets互动 (Interact with Ipywidgets)

Another way to see the impact of interest rate in your future value is by applying an interactive tool in your data. Ipywidgets is a library that uses interface (UI) controls for exploring code and data interactively.

查看利率对未来价值的影响的另一种方法是在数据中应用交互式工具。 Ipywidgets是一个使用界面(UI)控件以交互方式浏览代码和数据的库。

import ipywidgets as widgets
from IPython.display import display
%matplotlib inlinedef show_fv(rate):
figure = figsize=(10,8)
y = [npf.fv(rate, nper=i, pmt=0, pv=-100) for i in range(21)]plt.plot(y)plt.ylabel('Future value of $100, dollars')
plt.xlabel('years')

controls = widgets.interactive(show_fv,rate=(0, .20, .01))
display(controls)

The result is the graph interactive below:

结果是下面的交互式图:

Image for post
Figure 2 — The graph shows different Future values according to the interest rates
图2 —该图显示了根据利率不同的未来值

Figure 2 presents the output of the code using the library Ipywidgets. This is a way to use this tool and know at the time the influence of a variable in your results.

图2展示了使用库Ipywidgets的代码输出。 这是使用此工具并了解变量在结果中的影响的一种方式。

翻译自: https://medium.com/analytics-vidhya/future-values-and-ipywidgets-ce45e4d6a076

ipywidgets

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/391982.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

计算机主机后面辐射大,电脑的背面辐射大吗

众所周知,电子产品的辐射都比较大,而电脑是非常常见的电子产品,它也存在着一定的辐射,那么电脑的背面辐射大吗?下面就一起随佰佰安全网小编来了解一下吧。有资料显示,电脑后面的辐射比前面大,长期近距离在…

装饰器3--装饰器作用原理

多思考,多记忆!!! 转载于:https://www.cnblogs.com/momo8238/p/7217345.html

用folium模块画地理图_使用Folium表示您的地理空间数据

用folium模块画地理图As a part of the Data Science community, Geospatial data is one of the most crucial kinds of data to work with. The applications are as simple as ‘Where’s my food delivery order right now?’ and as complex as ‘What is the most optim…

python创建类统计属性_轻松创建统计数据的Python包

python创建类统计属性介绍 (Introduction) Sometimes you may need a distribution figure for your slide or class. Since you are not using data, you want a quick solution.有时,您的幻灯片或课程可能需要一个分配图。 由于您不使用数据,因此需要快…

浅析STM32之usbh_def.H

【温故而知新】类似文章浅析USB HID ReportDesc (HID报告描述符) 现在将en.stm32cubef1\STM32Cube_FW_F1_V1.4.0\Middlewares\ST\STM32_USB_Host_Library\Core\Inc\usbh_def.H /********************************************************************************* file us…

C# (类型、对象、线程栈和托管堆)在运行时的相互关系

在介绍运行时的关系之前,先从一些计算机基础只是入手,如下图: 该图展示了已加载CLR的一个windows进程,该进程可能有多个线程,线程创建时会分配到1MB的栈空间.栈空间用于向方法传递实参,方法定义的局部变量也在实参上,上图的右侧展示了线程的栈内存,栈从高位内存地址向地位内存地…

2019-08-01 纪中NOIP模拟赛B组

T1 [JZOJ2642] 游戏 题目描述 Alice和Bob在玩一个游戏,游戏是在一个N*N的矩阵上进行的,每个格子上都有一个正整数。当轮到Alice/Bob时,他/她可以选择最后一列或最后一行,并将其删除,但必须保证选择的这一行或这一列所有…

knn分类 knn_关于KNN的快速小课程

knn分类 knnAs the title says, here is a quick little lesson on how to construct a simple KNN model in SciKit-Learn. I will be using this dataset. It contains information on students’ academic performance.就像标题中所说的,这是关于如何在SciKit-Le…

office漏洞利用--获取shell

环境: kali系统, windows系统 流程: 在kali系统生成利用文件, kali系统下监听本地端口, windows系统打开doc文件,即可中招 第一种利用方式, 适合测试用: 从git下载代码: …

pandas之DataFrame合并merge

一、merge merge操作实现两个DataFrame之间的合并,类似于sql两个表之间的关联查询。merge的使用方法及参数解释如下: pd.merge(left, right, onNone, howinner, left_onNone, right_onNone, left_indexFalse, right_indexFalse,    sortFalse, suffi…

python ==字符串

字符串类型(str): 包含在引号(单,双,三)里面,由一串字符组成。 用途:姓名,性别,地址,学历,密码 Name ‘zbk’ 取值: 首先要明确,字符…

认证鉴权与API权限控制在微服务架构中的设计与实现(一)

作者: [Aoho’s Blog] 引言: 本文系《认证鉴权与API权限控制在微服务架构中的设计与实现》系列的第一篇,本系列预计四篇文章讲解微服务下的认证鉴权与API权限控制的实现。 1. 背景 最近在做权限相关服务的开发,在系统微服务化后&a…

mac下完全卸载程序的方法

在国外网上看到的,觉得很好,不仅可以长卸载的知识,还对mac系统有更深的认识。比如偏好设置文件,我以前设置一个程序坏了,打不开了,怎么重装都打不开,后来才知道系统还保留着原来的偏好设置文件。…

机器学习集群_机器学习中的多合一集群技术在无监督学习中应该了解

机器学习集群Clustering algorithms are a powerful technique for machine learning on unsupervised data. The most common algorithms in machine learning are hierarchical clustering and K-Means clustering. These two algorithms are incredibly powerful when appli…

自考本科计算机要学什么,计算机自考本科需要考哪些科目

高科技发展时代,怎离得开计算机技术?小学生都要学编程了,未来趋势一目了然,所以如今在考虑提升学历的社会成人,多半也青睐于计算机专业,那么计算机自考本科需要考哪些科目?难不难?自…

非对称加密

2019独角兽企业重金招聘Python工程师标准>>> 概念 非对称加密算法需要两个密钥:公钥(publickey)和私钥(privatekey)。公钥与私钥是一对,如果用公钥对数据进行加密,只有用对应的私…

政府公开数据可视化_公开演讲如何帮助您设计更好的数据可视化

政府公开数据可视化What do good speeches and good data visualisation have in common? More than you may think.好的演讲和好的数据可视化有什么共同点? 超出您的想象。 Aristotle — the founding father of all things public speaking — believed that th…

C++字符串完全指引之一 —— Win32 字符编码 (转载)

C字符串完全指引之一 —— Win32 字符编码原著:Michael Dunn翻译:Chengjie Sun 原文出处:CodeProject:The Complete Guide to C Strings, Part I 引言  毫无疑问,我们都看到过像 TCHAR, std::string, BSTR 等各种各样…

网络计算机无法访问 请检查,局域网电脑无法访问,请检查来宾访问帐号是否开通...

局域网电脑无法访问,有时候并不是由于网络故障引起的,而是因为自身电脑的一些设置问题,例如之前谈过的网络参数设置不对造成局域网电脑无法访问。今天分析另一个电脑设置的因素,它也会导致局域网电脑无法访问,那就是宾…

雷军的金山云D轮获3亿美元!投后估值达19亿美金

12月12日,雷军旗下金山云宣布D轮完成3亿美元融资,金额为云行业单轮融资最高。至此金山云投后估值达到19亿美元,成为国内估值最高的独立云服务商。金山集团相关公告显示,金山云在本轮融资中总计发行3.535亿股D系列优先股。骊悦投资…