by
ekdz__
• New Contributor III
- 5932 Views
- 5 replies
- 10 kudos
Hi! I'm looking for a solution to save a notebook in HTML format that has the "Results Only" view (without the executed code). Is there any possibility to do that?Thank you
- 5932 Views
- 5 replies
- 10 kudos
Latest Reply
Use option "+New dashboard" in the top menu (picture icon). Add results there (use display() in code to show data), and then you can export the dashboard to HTML.
4 More Replies
- 2947 Views
- 1 replies
- 1 kudos
When I try to save my file I getorg.apache.spark.sql.AnalysisException: Text data source supports only a single column, and you have 2 columns.; Is there any way to save a dataframe with more than one column to a .txt file?
- 2947 Views
- 1 replies
- 1 kudos
Latest Reply
Would pyspark.sql.DataFrameWriter.csv work? You could specify the separator (sep) as tabdf.write.csv(os.path.join(tempfile.mkdtemp(), 'data'))