Gireesha Devara has Published 173 Articles

Python Program to Interchange Elements of First and Last in a Matrix Across Columns

Gireesha Devara

Gireesha Devara

Updated on 15-May-2023 16:29:12

339 Views

A matrix is a two-dimensional array of many numbers arranged in rows and columns form. Python does not have any data type to represent a matrix, but we can use a nested list or NumPy array as a matrix. See the below input output scenarios to understand how to interchange ... Read More

Python Program to Interchange Elements of First and Last in a Matrix Across Rows

Gireesha Devara

Gireesha Devara

Updated on 15-May-2023 16:26:53

208 Views

A matrix is a set of numbers arranged in rows and columns format. In python, a matrix can not be created directly. Instead, we can use a nested list or NumPy array as a matrix. The interchanging of first and last row elements of a matrix is demonstrated below. Input ... Read More

How do I create a constant in Python?

Gireesha Devara

Gireesha Devara

Updated on 15-May-2023 16:05:28

2K+ Views

The constants and variables are used to store data values in programming. A variable generally refers to a value that can change over time. Whereas, a constant is a type of variable whose value cannot be changed during a program’s execution. There are only six built-in constants available in Python ... Read More

How to remove NaN from a Pandas Series?

Gireesha Devara

Gireesha Devara

Updated on 09-Mar-2022 09:46:51

5K+ Views

In the pandas series constructor, the method called dropna() is used to remove missing values from a series object. And it does not update the original series object with removed NaN values instead of updating the original series object, it will return another series object with updated values.The parameters of ... Read More

How to remove a specified row From the Pandas Series Using Drop() method?

Gireesha Devara

Gireesha Devara

Updated on 09-Mar-2022 09:42:31

17K+ Views

The pandas series.drop() method is used to remove a specific row from the pandas series object. And It will return a series object with the removed row.The drop() method can be applied to both labeled-based and position index abased series objects. The parameters of this drop() method are labels, axis, ... Read More

How can we give the scalar value to the pandas series.divmod() method?

Gireesha Devara

Gireesha Devara

Updated on 09-Mar-2022 09:41:13

163 Views

The Series.divmod() method in the pandas series constructor is used to perform both integer division and modular division operations on series objects with a scalar, or we can apply this divmod() method on two series also.The method performs an element-wise division operation of its two input objects. And it returns ... Read More

How to find the dot product of two pandas series objects?

Gireesha Devara

Gireesha Devara

Updated on 09-Mar-2022 09:34:21

722 Views

The series.dot() method in pandas series is used to perform the dot product operation of two pandas series objects. In mathematics, a dot product of two sequences is given by Sum of multiplication of values at each sequence.The series.dot() takes only one parameter which is another object, it takes a ... Read More

How to divide a pandas series with scalar using series.div() method?

Gireesha Devara

Gireesha Devara

Updated on 09-Mar-2022 09:32:08

2K+ Views

In the pandas series constructor, the div() or divide() method is used to perform element-wise floating division operation between the two series objects or between a series and a scalar.The method returns a series with resultant floating division values. We can also do the division operation between series and scalar.Here ... Read More

How does pandas series div() method work?

Gireesha Devara

Gireesha Devara

Updated on 09-Mar-2022 09:29:50

2K+ Views

In the pandas series constructor, the div() or divide() method is used to perform floating division of two series objects or division of a series with a scalar value. And performs element-wise division operation.The method returns a series with the result of floating division values. It has 3 parameters, which ... Read More

What is the use of series.describe method in Pandas?

Gireesha Devara

Gireesha Devara

Updated on 09-Mar-2022 09:27:20

732 Views

The describe() method in the pandas.series is used to generate the statistical description of a series object. This method analyzes the description of both numerical and objective series.As a result, the describe() method returns a summarized statistics of the series. It varies depending on the type of input series object.For ... Read More

Previous 1 ... 5 6 7 8 9 ... 18 Next
Advertisements