Using Dataiku
Sort by:
71 - 80 of
517
71 - 80 of
5178
Hi Everyone.
I'm facing similar issues only with Dash Mantine component (version 0.12.0) DatePicker. Version of Dash is 2.0.0 fyi.
Right now it is working with Dash Core Components DatePickerSingle but with Dash Mantine component DatePicker while selecting the date, the page stops responding.
Well I don't know about you but I never share a JSON copy/paste object with a stakeholder. I usually use Excel files for adhoc requests. So why not get that from the start rather than using copy/paste features that do not fit your use case properly? For instance the following code run in a Jupyter notebook will produce a CSV download link of a data frame read from a Dataiku dataset. The file is not even persisted so it's adhoc.
from IPython.display import display, HTML import dataiku import base64 display(HTML("<style>.container { width:100% !important; }</style>")) dataset = dataiku.Dataset("some_dataset_id") dataset_df = dataset.get_dataframe() def create_download_link( df, title = "Download CSV file", filename = "data.csv"): csv = df.to_csv() b64 = base64.b64encode(csv.encode()) payload = b64.decode() html = '<a download="{filename}" href="data:text/csv;base64,{payload}" target="_blank">{title}</a>' html = html.format(payload=payload,title=title,filename=filename) return HTML(html) create_download_link(dataset_df)
This website uses cookies. By clicking OK, you consent to the use of cookies. Read our cookie policy.
AcceptReject