Cortex - Cortex (AI / ML)

Once upon a time, a few years ago, our Intern didn’t kick off his career with the legendary Professor Frosty. Instead, he embarked on his data journey with the incredible Data Superheroes!

While he wasn’t out there battling villains face-to-face, he played a crucial role in the 'good fight' by performing pristine data analysis. His mission? To uncover why villains were striking on specific dates!

Now, it's your turn to step into the Intern's shoes. Below is the startup code to see the crimerates of the city where our Intern was working. Can you crack the code and help the Data Superheroes keep the city safe?

-- Create the table with an additional date columnCREATE OR REPLACE TABLE base_data (id INT AUTOINCREMENT,value INT,date TIMESTAMP_NTZ);
-- Define the start date as a constantSET start_date = '2020-01-01';
-- Insert 1000 records with values between 1 and 5 and increasing daily datesINSERT INTO base_data (value, date)WITH seq AS (SELECTROW_NUMBER() OVER (ORDER BY SEQ4()) - 1 AS iFROMTABLE(GENERATOR(ROWCOUNT => 1000)))SELECTUNIFORM(1, 5, RANDOM())::INT,DATEADD(DAY, i, to_date($start_date))FROM seq;
-- Insert 100 records with values between 1 and 5 and increasing daily datesINSERT INTO data_to_inspect (value, date)WITH seq AS (SELECTROW_NUMBER() OVER (ORDER BY SEQ4()) - 1 AS iFROMTABLE(GENERATOR(ROWCOUNT => 1000)))SELECTUNIFORM(1, 5, RANDOM())::INT,DATEADD(DAY, i, to_date($start_date))FROMseq;
-- Insert 2 records with values greater than 35 and increasing daily dates
INSERT INTO data_to_inspect (value, date)
VALUES
(36, DATEADD(DAY, 1000, to_date($start_date))),
(37, DATEADD(DAY, 1001, to_date($start_date)));

2 dates sprang out to the Intern , can you verify his calculations and point out which 2 dates stood out using anomaly detection (The Intern also specified that IS_ANOMALY might not be the only column you'd need to be sure)?

Previous
Previous

Snowpark ML - Snowpark & Python

Next
Next

Cortex - Cortex (AI / ML)