Font Size FIxes
This commit is contained in:
parent
2a55ced6ea
commit
1f9bcd6ae1
3 changed files with 16 additions and 6 deletions
|
|
@ -130,3 +130,8 @@ def gen_Oh_I_Mountain(wb):
|
|||
def format_frendly(num):
|
||||
T = num / 1000
|
||||
return str(int(np.floor(T)))+"K"
|
||||
|
||||
def format_frendly_M(num):
|
||||
T = num / 1000000
|
||||
return str(int(round(T,1)))+"M"
|
||||
#return str(round(T,1))+"M"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue