Answer:
Print handouts
Explanation:
I had this question and even if you didn't put the answer options i knew what it was I hope this helped you out (:
Answer:
b. organizing
Explanation:
In the organising stage of a program life cycle involves such activities as forming a team, allocating resources, preparing project documentation, and ensuring good communication.
The organising stage can also comprise of the following activities;
1) To properly Organise and prepare a project.
2) Typically it involves conducting research and making use of its results to design a prototype or service for testing.
3) Here there is also nees to prepare and implement a schedule
4) Identifying the targets within the project
5) Distributing the tasks and resources to the team
6) Adjusting the members of the project team as needed
To work with data frames in python, the pandas library ls very efficient. Therefore, the following lines of code will <em>load, subset and display the maximum value</em> of each column in the subset :
import pandas as pd
<em>#This</em><em> </em><em>imports</em><em> </em><em>the</em><em> </em><em>pandas</em><em> </em><em>dataframe</em><em> </em><em>and</em><em> </em><em>alias</em><em> </em><em>it</em><em> </em><em>as</em><em> </em><em>pd</em><em> </em>
df_cars = pd.DataFrame('Cars.csv')
<u>Subsetting the firsts UserNum row</u> :
Using the index location method, the first userNum row has a row index of 0.
df_subset = df.iloc[:0, :]
<em>#this</em><em> </em><em>selects</em><em> </em><em>only</em><em> </em><em>the</em><em> </em><em>first</em><em> </em><em>row</em><em> </em><em>and</em><em> </em><em>all</em><em> </em><em>the</em><em> </em><em>columns</em><em> </em>
<em>#first</em><em> </em><em>row</em><em> </em><em>of</em><em> </em><em> </em><em>df_cars</em><em> </em><em>dataframe</em><em> </em><em>has</em><em> </em><em>been</em><em> </em><em>assigned</em><em> </em><em>to</em><em> </em><em>another</em><em> </em><em>dataframe</em><em> </em><em>called</em><em> </em><em>the</em><em> </em><em>df_subset</em>
df_subset.max()
<em>#the</em><em> </em><em>max</em><em> </em><em>function</em><em> </em><em>returns</em><em> </em><em>the</em><em> </em><em>maximum</em><em> </em><em>value</em><em> </em><em>for</em><em> </em><em>each</em><em> </em><em>column</em><em> </em>
<em>Note</em><em> </em><em>:</em><em> </em><em>the</em><em> </em><em>cars.csv</em><em> </em><em>data</em><em> </em><em>wasn't</em><em> </em><em>provided</em><em>,</em><em> </em><em>However</em><em>,</em><em> </em><em>this</em><em> </em><em>is a</em><em> </em><em>run-through</em><em> </em><em>of</em><em> </em><em>how</em><em> </em><em>to</em><em> </em><em>get</em><em> </em><em>the</em><em> </em><em>required</em><em> </em><em>output</em><em>.</em><em> </em>
Learn more :brainly.com/question/16183131?referrer=searchResults