You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@zeppelin.apache.org by mebelousov <gi...@git.apache.org> on 2018/01/10 13:58:50 UTC

[GitHub] zeppelin issue #2601: [ZEPPELIN-2956] [font-end] Downloaded CSV/TSV data wil...

Github user mebelousov commented on the issue:

    https://github.com/apache/zeppelin/pull/2601
  
    https://github.com/apache/zeppelin/pull/2601
    Hi, @BruceXu1991!
    As @1ambda, I believe one could remove old button "Download Data as CSV".
    
    The new exporter works fine and conform to RFC-4180 in most cases.
    Excel 2013 processes well your case with new CSV exporter.
    ```
    %python
    import pandas as pd
    data = [['hello', 'moscow', 'i', 'lo"v, "e', 'you']]
    df = pd.DataFrame(data)
    print('%table ' + df.to_csv(sep='\t', index=False))
    ```
    This code gives the next result:
    ![2601](https://user-images.githubusercontent.com/9324163/34775721-3471f3fc-f625-11e7-8fc6-1169cbe227b8.PNG)


---