Informatics Practices
Kritika was asked to write the names of a few libraries in Python used for data analysis and one method of each. Help her write at least 3 libraries and their methods.
PyPlot
1 Like
Answer
The three libraries in Python used for data analysis are as follows:
- Pandas library — array() function
- NumPy library — DataFrame() function
- Matplotlib library — plot() function
Answered By
1 Like
Related Questions
Given the following set of data:
Weight measurements for 14 values of muffins (in grams)
78, 72, 69, 81, 63, 67, 65
79, 74, 71, 83, 71, 79, 80Create a simple histogram from the above data.
Given the following set of data:
Weight measurements for 14 values of muffins (in grams)
78, 72, 69, 81, 63, 67, 65
79, 74, 71, 83, 71, 79, 80Create a horizontal histogram from the above data.
Given the following set of data:
Weight measurements for 14 values of muffins (in grams)
78, 72, 69, 81, 63, 67, 65
79, 74, 71, 83, 71, 79, 80Create a step type of histogram from the above data.
Given the following set of data:
Weight measurements for 14 values of muffins (in grams)
78, 72, 69, 81, 63, 67, 65
79, 74, 71, 83, 71, 79, 80Create a cumulative histogram from the above data.