Skip to content

Commit

Permalink
Merge pull request #83 from meaningfy-ws/replace_nan
Browse files Browse the repository at this point in the history
replace NaN in dataframe
  • Loading branch information
costezki authored Dec 16, 2021
2 parents 89bdb42 + ce2eea7 commit d266a9b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

{% macro pandas_table(df, caption, column_labels={}) -%}
{% if (df is defined) and (df is not none) %}
{% set df = df.fillna(value="") %}
<table class="display">
<thead class="center aligned">
<tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

{% macro pandas_table(df, caption, column_labels={}) -%}
{% if (df is defined) and (df is not none) %}
{% set df = df.fillna(value="") %}
<table class="display">
<thead class="center aligned">
<tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

{% macro pandas_table(df, caption, column_labels={}) -%}
{% if (df is defined) and (df is not none) %}
{% set df = df.fillna(value="") %}
<table class="display">
<thead class="center aligned">
<tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

{% macro pandas_table(df, caption, column_labels={}) -%}
{% if (df is defined) and (df is not none) %}
{% set df = df.fillna(value="") %}
<table class="display">
<thead class="center aligned">
<tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

{% macro pandas_table(df, caption, column_labels={}) -%}
{% if (df is defined) and (df is not none) %}
{% set df = df.fillna(value="") %}
<table class="display">
<thead class="center aligned">
<tr>
Expand Down

0 comments on commit d266a9b

Please sign in to comment.