-
Re: Trying to create google cloud connection to my Local Dataiku project.
I presume you are trying to setup the Google Drive Dataiku Plugin right? https://www.dataiku.com/product/plugins/googledrive/ Personally I would recommend you don't use this plugin and use the f…1 · -
Re: When extracting date components from a date, year changes from double integer to double decimal
Have a read: https://community.dataiku.com/t5/Using-Dataiku/DataIku-messes-up-storage-types-in-visual-recipe/m-p/2323/highlight/true#M1629 I am guessing you have some data not shown in your sample th…1 · -
Re: Dataiku 12.4 API breaking change
Forgot to post posible solutions. If you are outside Dataiku one option is to downgrade the Dataiku API package: pip install dataiku-api-client==12.3.2 Another option is to strip out the time zone co…1 · -
Dataiku 12.4 API breaking change
For anyone out there moving to Dataiku 12.4 be aware that there is a breaking change in Dataiku 12.4 API. Dataiku has decided to add add timezone to their date/time objects returned by the API so if …2 · -
Re: Printing Dataset Size
import dataikudataiku_client = dataiku.api_client()project_handle = dataiku_client.get_default_project()dataset_list = project_handle.list_datasets()for dataset in dataset_list: dataset_size = 0 data…1 ·