Volodymyr Holomb

Results 4 comments of Volodymyr Holomb

How about semi-solution heavily based on [this](https://discuss.streamlit.io/t/creating-a-pdf-file-generator/7613/2?u=volodymyr_holomb): ``` import base64 import time import streamlit as st import pandas as pd def long_computation(): time.sleep(15) return pd.Series(range(1000), name='number') @st.cache def convert_csv(data): return...

I've met the same problem. Here is my simple Rmd-file (also saved in RStudio with UTF-8 encoding)) ```R **тест** (ukrainian) **test** (english) ``` Here is R-script for creating html-document and...

It seems that problem with encoding of html-file via Rmail has dissapeared in ```R 3.4.3```

Almost a year on still have no solution for the problem. At least works the following tactics: * write your (html) letter into .csv * read it into dataframe like...