Skip to content

Commit

Permalink
Merge pull request #243 from madgik/bug_ascii2utf8
Browse files Browse the repository at this point in the history
Change transfer encoding from ascii to utf-8
  • Loading branch information
ThanKarab authored Apr 28, 2020
2 parents 14f5423 + 8578843 commit ab53e86
Show file tree
Hide file tree
Showing 2 changed files with 200 additions and 138 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def descr_stats_global(global_in):

if var.is_categorical:
is_categorical, var_name, count, freqs = var.get_data()
freqs = {str(key): freqs[key] for key in freqs.keys()}
freqs = {key: freqs[key] for key in freqs.keys()}
else:
is_categorical, var_name, nn, sx, sxx, xmin, xmax = var.get_data()
mean = sx / nn
Expand Down
Loading

0 comments on commit ab53e86

Please sign in to comment.