by | Sep 17, 2024 | Business Intelligence
In this post, you’ll learn what BigQuery is, understand its capabilities, and set up a project in Google Cloud which we will later use to practice using BigQuery for loading, querying, and analyzing data. This is the first article in a series about BigQuery:...
by | Sep 17, 2024 | Business Intelligence
When working with dictionaries in Python, you’ll sometimes have to merge them into a single dictionary for further processing. In this tutorial, we’ll go over three common methods to merge Python dictionaries. Specifically, we’ll focus on merging dictionaries...
by | Sep 17, 2024 | Business Intelligence
Let’s learn how to handle large text inputs in the Large Language Model (LLM). Preparation Ensure you have the Transformers and datasets package from Hugging Face installed in your environment. If not, you can install them via pip using the following code: pip...
by | Sep 16, 2024 | Business Intelligence
In data science, handling different types of data is a daily challenge. One of the most common data types is categorical data, which represents attributes or labels such as colors, gender, or types of vehicles. These characteristics or names can be divided into...
by | Sep 16, 2024 | Business Intelligence
Let’s learn how to perform time series data aggregation in Pandas. Preparation We would need the Pandas and Numpy packages installed, so we can install them using the following code: pip install pandas numpy With the packages installed, let’s jump into the...