-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.py
108 lines (90 loc) · 2.55 KB
/
utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# -*- coding: utf-8 -*-
"""
Created on Fri Dec 20 15:10:16 2019
@author: Chatchai Sirithipvanich
"""
import matplotlib.pyplot as _plt
import pandas as _pd
import os as _os
def get_system_directory(path):
'''
Parameters
----------
path : string
directory path either real path or relative path.
Returns
-------
path : string
system directory path.
'''
if _os.sys.platform == 'win32':
path = _os.path.realpath(path)+'\\'
else:
path = _os.path.realpath(path)+'/'
return path
def plot_2d_df(xy,xfactor = 1,yfactor = 1,scale = False):
'''
Parameters
----------
xy : pandas.DataFrame
pandas dataframe carry two columns of data.
xfactor : float, optional
muliplicative factor of the 1st column. The default is 1.
yfactor : float, optional
multplicative factor of the 2nd column. The default is 1.
scale : BOOL, optional
scale y axis to [0,1]. The default is False.
Returns
-------
None.
'''
#x_max = xy.iloc[:,0].max()
#x_min = xy.iloc[:,0].min()
y_max = xy.iloc[:,1].max()
y_min = xy.iloc[:,1].min()
#xscale = x_max - x_min
yscale = y_max - y_min
if scale:
#xfactor = 1/xscale
yfactor = 1/yscale
_plt.plot(xy.iloc[:,0].to_numpy()*xfactor,xy.iloc[:,1].to_numpy()*yfactor)
def load_data(path,namelist,plot=True):
'''
only csv is supported
Parameters
----------
path : string
real or relative directory path of the data.
namelist : string or list
files name or list of file's names.
plot : TYPE, optional
trigger whether plot the loaded data. The default is True.
Returns
-------
iv : list of pandas.DataFrame
list of the dataframe of loaded files
'''
path = get_system_directory(path)
iv_list=[]
# string input handling
if type(namelist) == str:
namelist = [namelist]
for name in namelist:
# chek if the name is str
if type(name) == str:
# extension handling
if name.split('.')[-1] == 'csv':
name = name.split('.csv')[0]
iv_list.append(_pd.read_csv(path+name+'.csv'))
else:
print('the following input is not string')
print(name)
if plot:
_plt.figure()
for df in iv_list:
plot_2d_df(df,yfactor=1e6)
_plt.xlabel('V (V)')
_plt.ylabel('I (uA)')
_plt.legend(namelist)
_plt.grid()
return iv_list