Emotion is an individual's response to an event or situation. Research related to emotions in the field of data science falls under sentiment analysis, where sentiment analysis mostly focuses on determining the positive or negative emotional tone. This study attempts to classify emotions into labels such as Happy, Love, Surprise, Anger, Fear, and Sadness. Then, these six emotion labels are further categorized into positive and negative groups. The dataset for this research comprises tweets from Twitter related to the 2024 presidential election in Indonesia. Several machine learning algorithms are employed in this study, including Naï ve Bayes (Multinomial Bayes, Bernoulli Bayes, Complement Bayes), K-Nearest Neighbors (KNN), and Support Vector Machines (SVM), comparing two feature extraction methods: Term Frequency-Inverse Document Frequency (TF-IDF) and Bag of Words (BoW). The resultsshow that the use of SVM does not yield better accuracy, whether using TF-IDF or BoW. Therefore, this study improves the accuracy of the SVM algorithm by combining kernels available in SVM (Polynomial, Radial Basis Function (RBF), and Linear). From the conducted experiments, it is evident that SVM with a combined kernel, referred to as SVM Polynomial, RBF, Linier (PoRLi) in this study, achieves better accuracy compared to a single kernel. This is reflected in the classification accuracy with 6 labels, reaching 62%, indicating a 2% increase from SVM Linear, which obtained the highest accuracy using a single kernel. Furthermore, in the classification of 2 labels, there is also a 1% increase when using SVM PoRLi. It can be concluded that SVM PoRLi can enhance accuracy across various labels.