๊ฐ•์˜

๋ฉ˜ํ† ๋ง

๋กœ๋“œ๋งต

BEST
Data Science

/

Certificate (Data Science)

[Side Project After Work] Big Data Analysis Certification Practical Exam (Type 1, 2, 3)

We guide non-majors and beginners to quickly obtain the Big Data Analysis Certification (Practical Exam)! Keep the theory light and the practice solidโ€”focusing on core points that are guaranteed to appear on the exam through past questions, without the need for complex background knowledge.

(4.9) 804 reviews

5,453 learners

Level Beginner

Course period 12 months

  • roadmap
Engineer Big Data Analysis
Engineer Big Data Analysis
Big Data
Big Data
Python
Python
Pandas
Pandas
Machine Learning(ML)
Machine Learning(ML)
Engineer Big Data Analysis
Engineer Big Data Analysis
Big Data
Big Data
Python
Python
Pandas
Pandas
Machine Learning(ML)
Machine Learning(ML)

[Task type 2] What if there is time series data in data?

What if you have time series data among the columns in a classification or regression problem?

If you have time, please create a derived variable (a new column).

The code below is

  1. Convert time series data to datetime data type.

  2. I created new columns for year, month, and day.

  3. And the existing datetime column was deleted.

ย 

# datetime train['datetime'] = pd.to_datetime(train['datetime']) test['datetime'] = pd.to_datetime(test['datetime']) train['year'] = train['datetime'].dt.year train['month'] = train['datetime'].dt.month train['day'] = train['datetime'].dt.day test['year'] = test['datetime'].dt.year test['month'] = test['datetime'].dt.month test['day'] = test['datetime'].dt.day train = train.drop('datetime', axis=1) test = test.drop('datetime', axis=1)

Let's try using them together. Let's also see how the model performance changes depending on whether or not it is used!

https://www.kaggle.com/code/agileteam/t2-6-bike-regressor

ย 

ย 

Comment