
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Gireesha Devara has Published 248 Articles

Gireesha Devara
171 Views
The basic operation of the series.equals() method in the pandas constructor is used to test whether the elements in two series objects are the same or not, and it also compares the shape of the two series object.The equals() method is very similar to the pandas series.eq() method but the ... Read More

Gireesha Devara
529 Views
The Pandas series.eq() method is used to compare every element of a given series with a passed parameter (other series object or a scalar value). It will return True for every element which is equal to the element in the other series object (passed series object).The output of the eq() ... Read More

Gireesha Devara
156 Views
The series.eq() method in the pandas constructor is used to compare elements of the given series with others (maybe another series or a scalar value). As a result, It will return a new series object with boolean values.The element-wise equal operation is done by using this eq() method. The boolean ... Read More

Gireesha Devara
2K+ Views
By using the duplicated() method in the pandas series constructor we can easily identify the duplicate values in the index of a series object. The method duplicated() is used to identify the duplicate values in a series object.The duplicated() method will return a series with boolean values. Boolean value False ... Read More

Gireesha Devara
184 Views
Finding the duplicate values in an object is a very common task in the data analysis process. In pandas, we have a function called duplicated() which is used to identify the duplicate values.For a pandas series object, the duplicated() method will return a series with boolean values. True indicates duplicate ... Read More

Gireesha Devara
329 Views
Reading and extracting valid information from a DateTime object is a very important task in data analysis. The pandas package provides some useful tools to perform feature extracting from a DateTime object.In pandas, the series.dt() method is used to access the components like years, months, days, etc., from a given ... Read More

Gireesha Devara
505 Views
The drop_duplicate() method in the pandas series constructor is used to remove the duplicate values from a series object. This method cleans the duplicate values and returns a series with modified rows, and it won’t alter the original series object. Instead, it will return a new one.One of the important ... Read More

Gireesha Devara
1K+ Views
The main advantage of using the pandas package is analysing the data for Data Science and Machine Learning applications. In the process of analysing the data, deleting duplicate values is a commonly used data cleaning task.To remove duplicate values from a pandas series object, we can use the drop_duplicate() method. ... Read More

Gireesha Devara
332 Views
The agg() method in pandas Series is used to apply one or more functions on a series object. By using this agg() method we can apply multiple functions at a time on a series.To use multiple functions at once we need to send those function names as a list of ... Read More

Gireesha Devara
498 Views
The add_suffix is the panda Series function which is used to add a string suffix to the series index labels. this method will return a new series object with updated labels.This add_suffic method takes a string as a parameter, and using that string will update the series labels. It will ... Read More