Informatics Practices
To subtract the values of two DataFrames, …………… function may be used.
- sub
- difference
- minus
- rsub
Related Questions
To iterate over vertical subsets of a DataFrame, …………… function may be used.
- iterate()
- iterrows()
- itercols()
- iteritems()
To add two DataFrames' values, …………… function may be used.
- plus
- rplus
- add
- radd
To divide the values of two DataFrames, …………… function may be used.
- divide
- div
- rdiv
- division
Which of the following would give the same output as DF/DF1 where DF and DF1 are DataFrames ?
- DF.div(DF1)
- DF1.div(DF)
- Divide(DF, DF1)
- Div(DF, DF1)