-
Re: Internal Date Format Used in DSS Internal json files
Hi, This is a UNIX timestamp, i.e. the number of milliseconds since 1970-01-01T00:00:00.000Z There are many ways to parse this in R: * In base package: as.POSIXct(1581031993308/1000, origin="197…2 · -
Re: How can I add a Plugin to the right side panel
Hi, You need to add <span class="pre">selectableFromDataset</span> in the recipe descriptor. Please see https://doc.dataiku.com/dss/latest/plugins/reference/recipes.html#select-…1 · -
Re: Custom Theme
Hi, The 90s store their themes in the resources/themes folder of the DSS installation directory (i.e. INSTALL_DIR/resources/themes) In order to add your own theme: * In the DSS data directory, create…4 · -
Re: Faster imports from Google BigQuery
The BigQuery dataset in DSS must indeed be in "table" mode, however the "table" mode in DSS can also read views, so the simplest would be to create a view in BigQuery (this way, n…1 · -
Re: Is that possible to run python recipe in loop?
Hi, You need use the chunked reading/writing capability of the Dataiku API described in https://doc.dataiku.com/dss/latest/python-api/datasets.html#chunked-reading-and-writing-with-pandas That of cou…1 ·
