How to Create a Pandas DataFrame in Python
DataFrame is a two dimensional object of Pandas to store data in a structured way. DataFrame is used to represent data in tabular format in...
How to Count Rows and Columns of a Pandas Dataframe in Python
There are different options to know the number of rows and columns of a Pandas DataFrame in Python. In this article, I’ll show you various...
How to Import data into a Data Frame from Excel File in R
When you will work with different kinds of data, you have to know different techniques of importing different kinds of data from different types of...
How to Export a Data Frame into Excel File in R
When you will work with different kinds of data you have to know different techniques of importing different kinds of data from different types of...
How to Convert Date and Time to String in Python
In different kind of analytics and programming lifecycle we need to format date and time object to String. By using the strftime() function, we can...
How to Get the Current Date and Time in Python
In python, we can get the current date and time using the datetime object. In the datetime module, the now() function gives us the current...