dataframe列印相關

2021-10-19 21:02:19 字數 728 閱讀 5487

# 禁用科學計數法

pd.options.display.float_format =''.

format

# 列對齊

pd.set_option(

'display.unicode.ambiguous_as_wide'

,true

)pd.set_option(

'display.unicode.east_asian_width'

,true

)pd.set_option(

'display.width'

,800

)# 設定列印寬度

# 顯示所有列、行

pd.options.display.max_columns =

200pd.options.display.max_rows =

200# 禁止自動換行(設定為flase不自動換行,true反之)

pd.set_option(

'expand_frame_repr'

,false

)# plot相關

plt.rcparams[

'font.sans-serif']=

['simhei'

]# 用來正常顯示中文標籤

plt.rcparams[

'axes.unicode_minus']=

false

# 用來正常顯示負號

Lodop列印相關

本文只對遇到的一些特殊問題進行了總結,關於lodop的屬性和方法詳解可檢視求知路漫漫的部落格或者lodop c lodop使用說明及樣例 畫素尺寸轉換 1.列印 的方式有兩種,函式如下 add print table inttop,intleft,intwidth,intheight,strhtml...

vue列印相關

page 單純這樣做會讓列印出來的資訊直接頂頭了 這個應該是列印的最外層的dom元素沒有padding或是margin的值 所以我在要列印的資訊裡加了padding 測試測試測試 相關參考文章 暫時未解決 display none 設定滾動條為空 el table td,el table th.is...

grep 列印相關行內容

grep 列印相關行數 常用引數 r 關鍵字 c 列印符合要求的行數 i 忽略大小寫 n 輸出行和行號 v 列印不符合要求的行,即反選 a 後跟數字 有無空格都可以 例如 a3表示列印篩選行及前3行 b 後跟數字,例如 b3表示列印篩選行及後3行 c 後跟數字,例如 c3表示列印篩選行及前後各3行 ...