Answer:
minimum electric power consumption of the fan motor is 0.1437 Btu/s
Explanation:
given data
area = 3 ft by 3 ft
air density = 0.075 lbm/ft³
to find out
minimum electric power consumption of the fan motor
solution
we know that energy balance equation that is express as
E in - E out =
......................1
and at steady state
= 0
so we can say from equation 1
E in = E out
so
minimum power required is
E in = W = m
=
put here value
E in =
E in =
E in = 0.1437 Btu/s
minimum electric power consumption of the fan motor is 0.1437 Btu/s
Answer:
import pandas pd
def read_prices(tickers):
price_dict = {}
# Read ingthe ticker data for all the tickers
for ticker in tickers:
# Read data for one ticker using pandas.read_csv
# We assume no column names in csv file
ticker_data = pd.read_csv("./" + ticker + ".csv", names=['date', 'price', 'volume'])
# ticker_data is now a panda data frame
# Creating dictionary
# for the ticker
price_dict[ticker] = {}
for i in range(len(ticker_data)):
# Use pandas.iloc to access data
date = ticker_data.iloc[i]['date']
price = ticker_data.iloc[i]['price']
price_dict[ticker][date] = price
return price_dict
Answer:
no need for that
Explanation:
they are not the same at all
The true statement about the dot plot is 1 has 4 and 0 dots.
Explanation:
- after creating a Bar chart 4 is the right answer.
- The highest among st all the other plots is 1 but 4 shows 3.
- Taking an average from all the data points 3 comes to the right answer.
- Median the central Mid-point is 3.
- Mode also comes to 3.
- It is skewed on the right due to the 1st one.
- Skewed shows the data point either increasing or in decreasing.
- There a to Bi- histograms which has two ups and downs.
- The true statement has to be as Mean=Median=Mode is 3.
Answer:
I did not what is it about?