Attributes Flashcards

1
Q

T

A

Return the transpose, which is by definition self.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

array

A

The ExtensionArray of the data backing this Series or Index.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

at

A

Access a single value for a row/column label pair.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

attrs

A

Dictionary of global attributes of this dataset.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

axes

A

Return a list of the row axis labels.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

dtype

A

Return the dtype object of the underlying data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

dtypes

A

Return the dtype object of the underlying data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

empty

A

Indicator whether Series/DataFrame is empty.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

flags

A

Get the properties associated with this pandas object.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

hasnans

A

Return True if there are any NaNs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

iat

A

Access a single value for a row/column pair by integer position.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

iloc

A

(DEPRECATED) Purely integer-location based indexing for selection by position.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

index

A

The index (axis labels) of the Series.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

is_monotonic_decreasing

A

Return boolean if values in the object are monotonically decreasing.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

is_monotonic_increasing

A

Return boolean if values in the object are monotonically increasing.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

is_unique

A

Return boolean if values in the object are unique.

17
Q

loc

A

Access a group of rows and columns by label(s) or a boolean array.

18
Q

name

A

Return the name of the Series.

19
Q

nbytes

A

Return the number of bytes in the underlying data.

20
Q

ndim

A

Number of dimensions of the underlying data, by definition 1.

21
Q

shape

A

Return a tuple of the shape of the underlying data.

22
Q

size

A

Return the number of elements in the underlying data.

23
Q

values

A

Return Series as ndarray or ndarray-like depending on the dtype.

24
Q
A