取消
顯示的結果
而不是尋找
你的意思是:

顯示HTML輸出

DavidWrench
新的貢獻者二世

我想顯示html輸出或在一個html文件中讀取顯示數據磚從pandas-profiling筆記本。

熊貓作為pd導入導入pandas_profiling

df = pd.read_csv (“/ dbfs / FileStore /表/ my_data。csv”,標題=“推斷”,parse_dates = True,編碼=“utf - 8”)

形象= pandas_profiling.ProfileReport (df) [13]: < pandas_profiling。ProfileReport 0 x7f30e0b55780 >

profile.to_html () [19]:“< !doctype html > \ n \ n < html lang =“en”> \ n <頭> \ n < meta charset = " utf - 8 " > \ n \ n <標題> < /名稱>概要報告……警告:跳過429584字節的輸出

錯誤dislpayHtml ()

displayHTML(剖麵)Py4JException:提出的一個例外是Python代理。返回消息:x

我也可以輸出html文件:

profile.to_file (outputfile =“/ tmp / my_profiling.html”)

但是我怎麼讀?有%的html命令嗎?

4回複4

DavidWrench
新的貢獻者二世

我很抱歉這是一個混亂,這裏的代碼格式不逃避我試圖嵌入的代碼。

anandkn1884
新的貢獻者二世

你好,

我花了一段時間找到一個簡單的解決方案。發現兩種方法。希望他們的工作。

1。

——閱讀html文件的內容

html_file_content =開放(“輸出。html”、“r”) .read ()

——使用displayHTML html_file_content

displayHTML (html_file_content)

2。注意:df dataframe

形象= pp.ProfileReport (df)

p = profile.to_html ()

displayHTML (p)

christopher_bro
新的貢獻者二世

你有試過使用

displayHTML (profile.to_html ())

它為我工作,但我沒有警告或例外,你了,當我使用

displayHTML(概要)

Bendu_Preez
新的貢獻者二世

最終為我工作的是displayHTML (profile.to_html ()) pandas_profiling和displayHTML(配置文件. htmlspark_profiling)。

歡迎來到磚社區:讓學習、網絡和一起慶祝

加入我們的快速增長的數據專業人員和專家的80 k +社區成員,準備發現,幫助和合作而做出有意義的聯係。

點擊在這裏注冊今天,加入!

參與令人興奮的技術討論,加入一個組與你的同事和滿足我們的成員。

Baidu
map