如何在pandas&中创建一个带有可点击超链接的表格Jupyter笔记本

时间:2017-02-16 02:50:35

标签: pandas jupyter-notebook

print('http://google.com')输出可点击的网址。

如何获取pd.DataFrame(['http://google.com', 'http://duckduckgo.com'])的可点击网址?

4 个答案:

答案 0 :(得分:27)

如果您只想将URL格式应用于单个列,可以使用:

data = [dict(name='Google', url='http://www.google.com'),
        dict(name='Stackoverflow', url='http://stackoverflow.com')]
df = pd.DataFrame(data)

def make_clickable(val):
    # target _blank to open new window
    return '<a target="_blank" href="{}">{}</a>'.format(val, val)

df.style.format({'url': make_clickable})

(PS:不幸的是,我没有足够的声誉将其作为对@Abdou帖子的评论发布)

答案 1 :(得分:12)

尝试使用pd.DataFrame.style.format

df = pd.DataFrame(['http://google.com', 'http://duckduckgo.com'])

def make_clickable(val):
    return '<a href="{}">{}</a>'.format(val,val)

df.style.format(make_clickable)

我希望这证明有用。

答案 2 :(得分:1)

@shantanuo:声誉不足以发表评论。 怎么样?

def make_clickable(url, name):
    return '<a href="{} rel="noopener noreferrer" target="_blank">{}</a>'.format(url,name)

df['name'] = df.apply(lambda x: make_clickable(x['url'], x['name']), axis=1)

答案 3 :(得分:1)

from IPython.core.display import display, HTML
import pandas as pd

# create a table with a url column
df = pd.DataFrame({"url": ["http://google.com", "http://duckduckgo.com"]})

# create the column clickable_url based on the url column
df["clickable_url"] = df.apply(lambda row: "<a href='{}' target='_blank'>{}</a>".format(row.url, row.url.split("/")[2]), axis=1)

# display the table as HTML. Note, only the clickable_url is being selected here
display(HTML(df[["clickable_url"]].to_html(escape=False)))