-
Backset and forcast is one month ahead - Time series forecasting
I have a problem with the time series forecasting, the backset is one month ahead and also the forecast. Other problem is that I have a 36 month dataset and the forecast output that dataiku is giving me is in month 36, so actually the time series is not giving me month 37 I am uploading a picture of the problem. Anyone…
-
Restrict access to a webapp
Hello, Dataiku Team I have a webapp, but I want to allow access only to some users or group of users. I tried to do it from the security section of the project but it didn't work. Apparently anyone who has a Dataiku user can view the webapp. Is there a way to limit this? Thank you. Operating system used: Linux
-
Executives need a spreadsheet alternative ... Is Dataiku the answer?
Our executives are running into limitations with Excel, especially when dealing with hexadecimal numbers which we use as account numbers for our clients. They can't sort them at all as Excel doesn't support that functionality. Is it reasonable to propose Dataiku, perhaps with a plugin, as an alternative for them to…
-
In filter Getting warning message - facet values are incomplete (DSS server engine limit reached)
I'm using one column as filter in dashboard and it contains more than 10000 records. So in filter it's only 10000 records and giving warring message as facet values are incomplete (DSS server engine limit reached) Operating system used: Windows 10
-
How to convert a strings representing "yyyyMMdd HHmm" into a time stamp format
Hi experts, I have a sample date obtained from my customer that contains a string data like for example "20240310 1334". This indicates time stamp date, so I want to convert this text string data into a time stamp data like "2024-03-10 13:34:00.000000" Could someone please advise if any way to do this? Any commento will be…
-
Webapps: Error when starting backend
Hello, I have an issue when running webapps backend. I get following error " Reading dataset failed: b"Failed to read variables, caused by: DKUSecurityException: Cannot retrieve user/admin properties, caused by: NotFoundException: User 'username' doesn't exist" any ideas why this is happening ? how to solve it ? A first…
-
folder.get_download_stream I/O operation on closed file
Hi experts, Dataiku prompts this error ValueError: I/O operation on closed file. when I tried to execute the script below: with folder.get_download_stream(path_csv) as f: data = pd.read_csv(f, encoding='latin-1') The reason I put that encoding is due to the utf-8 error if encoding is not specified ( 'utf-8' codec can't…
-
Recipe for implementing PCA.
Hi there, I am trying to implement PCA on a dataset with 700 columns. How do i do this in DSS
-
want to load multiple dataframes to seperate csv files in a folder
want to extract 5 files (100s more later) to 5 csv files in a folder, error is <type 'exceptions.AttributeError'>: 'str' object has no attribute 'to_csv' or is there a better way to do it test1 = dataiku.Dataset("test1")df1 = test1.get_dataframe()test2 = dataiku.Dataset("test2")df2 = test2.get_dataframe()test3 =…
-
How can I query Dataiku's commit log from the public API client?
I would like to use DSS's public API to query the internal commit log. In particular, I would like to obtain: 1. The project key 2. The commit timestamp 3. The commit ID of the latest timestamp I know that it is possible to list all Project and Commits using an Internal DSS dataset. However, I would like to accomplish the…