示例#1
0
import os
root_path = os.path.dirname(os.path.abspath('__file__'))
import sys
sys.path.append(root_path)
from tools.plot_utils import plot_pacf

plot_pacf(
    station='Xianyang',
    decomposer=None,
    wavelet_level=None,
)
import os
root_path = os.path.dirname(os.path.abspath('__file__'))
import sys
sys.path.append(root_path)
from tools.plot_utils import plot_pacf

plot_pacf(
    file_path=root_path+'/Zhangjiashan_vmd/data/PACF.csv',
    save_path=root_path+'/Zhangjiashan_vmd/graph/',
)
示例#3
0
import os

root_path = os.path.dirname(os.path.abspath('__file__'))
import sys

sys.path.append(root_path)
from tools.plot_utils import plot_pacf

plot_pacf(
    file_path=root_path + '/Xianyang_vmd/data/PACF.csv',
    save_path=root_path + '/Xianyang_vmd/graph/',
)
示例#4
0
import os
root_path = os.path.dirname(os.path.abspath('__file__'))
import sys
sys.path.append(root_path)
from tools.plot_utils import plot_pacf

plot_pacf(
    station='Zhangjiashan',
    decomposer='SSA',
    wavelet_level=None,
)
import os
root_path = os.path.dirname(os.path.abspath('__file__'))
import sys
sys.path.append(root_path)
from tools.plot_utils import plot_pacf

plot_pacf(
    file_path=root_path + '/Huaxian_vmd/data/PACF.csv',
    save_path=root_path + '/Huaxian_vmd/graph/',
)
import os
root_path = os.path.dirname(os.path.abspath('__file__'))
import sys
sys.path.append(root_path)
from tools.plot_utils import plot_pacf

plot_pacf(
    file_path=root_path + '/Xianyang_modwt/data/db10-2/PACF.csv',
    save_path=root_path + '/Xianyang_modwt/graph/',
)
示例#7
0
import os
root_path = os.path.dirname(os.path.abspath('__file__'))
import sys
sys.path.append(root_path)
from tools.plot_utils import plot_pacf

plot_pacf(
    file_path=root_path + '/Zhangjiashan_dwt/data/db10-2/PACF.csv',
    save_path=root_path + '/Zhangjiashan_dwt/graph/',
)
import os

root_path = os.path.dirname(os.path.abspath('__file__'))
import sys

sys.path.append(root_path)
from tools.plot_utils import plot_pacf

plot_pacf(station="Huaxian", decomposer="modwt", wavelet_level='db10-2')

plot_pacf(station="Huaxian", decomposer="modwt", wavelet_level='db10-4')
示例#9
0
import os
root_path = os.path.dirname(os.path.abspath('__file__'))
import sys
sys.path.append(root_path)
from tools.plot_utils import plot_pacf

plot_pacf(
    station='Huaxian',
    decomposer='EEMD',
    wavelet_level=None,
)
import os
root_path = os.path.dirname(os.path.abspath('__file__'))
import sys
sys.path.append(root_path)
from tools.plot_utils import plot_pacf

plot_pacf(
    station='Xianyang',
    decomposer='DWT',
    wavelet_level='db10-2',
)
示例#11
0
import os
root_path = os.path.dirname(os.path.abspath('__file__'))
import sys
sys.path.append(root_path)
from tools.plot_utils import plot_pacf

plot_pacf(
    station='Zhangjiashan',
    decomposer='DWT',
    wavelet_level='db10-2',
)
import os
root_path = os.path.dirname(os.path.abspath('__file__'))
import sys
sys.path.append(root_path)
from tools.plot_utils import plot_pacf

plot_pacf(
    station='Huaxian',
    decomposer='DWT',
    wavelet_level='db10-2',
)
import os
root_path = os.path.dirname(os.path.abspath('__file__'))
import sys
sys.path.append(root_path)
from tools.plot_utils import plot_pacf

plot_pacf(
    file_path=root_path + '/Huaxian_dwt/data/db10-2/PACF.csv',
    save_path=root_path + '/Huaxian_dwt/graph/',
)