One of the columns outputted in the table I'm building is a URL. I was wondering if there was a way to specify how a column is printed so it can be a clickable link. This example is given:
x.print_html(attributes={"name":"my_table", "class":"red_table"})
will print:
<table name="my_table" class="red_table">
<tr>
<th>City name</th>
<th>Area</th>
<th>Population</th>
<th>google.com</th>
</tr>
...
...
...
</table>
I would like it to be printed as:
<table name="my_table" class="red_table">
<tr>
<th>City name</th>
<th>Area</th>
<th>Population</th>
<th><a href = google.com>google.com</a></th>
</tr>
...
...
...
</table>
Is this possible? Thanks.
One of the columns outputted in the table I'm building is a URL. I was wondering if there was a way to specify how a column is printed so it can be a clickable link. This example is given:
I would like it to be printed as:
Is this possible? Thanks.