我一再试图从时间序列数据帧中获取类似的数据。例如,系列的月度(年化)标准差:
any_df.resample('M').std().mean()*12**(1/2)
如果可以将这些方法分配给变量,它可以节省输入并且可能会限制错误,因此可以重复使用它们 - 我想这看起来像
my_stdev = .resample('M').std().mean()*12**(1/2)
result = any_df.my_stdev()
这是否可行,如果可行,是否明智?
提前致谢!
答案 0 :(得分:1)
为什么不做自己的功能?
<div class="wrapper" *ngIf="!isLoginPassed">
<div class="logInWindow">
<div class="title">
<h1>Log In to BANDZ account </h1>
<div class="x" (click)=closeLoginForm()></div>
</div>
<div class="Container">
<form action="" method="post" [formGroup]="loginForm" class="form form-login">
<mat-form-field>
<mat-label>
<mat-icon>email</mat-icon>
Username
</mat-label>
<input type="text" matInput placeholder="Please provide your username" formControlName="username">
</mat-form-field>
<mat-form-field>
<mat-label>
<mat-icon>lock-outline</mat-icon>
Password
</mat-label>
<input type="password" matInput placeholder="Please provide your password" formControlName="password">
</mat-form-field>
<button [disabled]="!loginForm.valid" (click)="onLoginSubmit()" mat-raised-button>Log in</button>
<a id="lostPassword" href="#">Lost your password?</a>
<br>
<a id="registerAccount" href="#">Don't have an account?</a>
</form>
</div>
</div>
</div>