add gitignore

This commit is contained in:
Anton Romanov 2025-02-13 10:31:35 +04:00
parent 4db88e4641
commit 1d90e244e3
2 changed files with 31 additions and 2 deletions

31
.gitignore vendored Normal file
View File

@ -0,0 +1,31 @@
# ---> Java
# Compiled class file
*.class
.idea
.idea/*
.gradle
out
build
# Log file
*.log
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
replay_pid*

View File

@ -1,9 +1,7 @@
import matplotlib.pyplot as plt import matplotlib.pyplot as plt
import pandas as pd import pandas as pd
import numpy as np
from sklearn.preprocessing import StandardScaler, MinMaxScaler from sklearn.preprocessing import StandardScaler, MinMaxScaler
from statsmodels.tsa.holtwinters import ExponentialSmoothing from statsmodels.tsa.holtwinters import ExponentialSmoothing
from IPython.display import display
# Определим функцию сглаживания временного ряда, она понадобится позже # Определим функцию сглаживания временного ряда, она понадобится позже
def smooth_time_series(ts): def smooth_time_series(ts):