Informatics Practices
Which of the following statement will import pandas library ?
- Import pandas as pd
- import Pandas as py
- import pandas as pd
- import panda as pd
Related Questions
What does drop() function do ?
What is the role of inplace argument in rename() function.
To create an empty Series object, you can use :
- pd.Series(empty)
- pd.Series(np.NaN)
- pd.Series( )
- all of these
To specify datatype
int16for a Series object, you can write :- pd.Series(data = array, dtype = int16)
- pd.Series(data = array, dtype = numpy.int16)
- pd.Series(data = array.dtype = pandas.int16)
- all of the above