GradePack

    • Home
    • Blog
Skip to content
bg
bg
bg
bg

GradePack

Consider the same pseudo code from the previous question to…

Consider the same pseudo code from the previous question to compute the efficient portfolios:from scipy.optimize import minimize f = lambda w: TO BE FILLED mu = np.linspace(15, 30, 31) sd_optimal = np.zeros_like(mu) w_optimal = np.zeros([31, 5]) for i in range(len(mu)): # Optimization Constraints cons = ({‘type’:’eq’, ‘fun’: lambda w: np.sum(w) – 1}, {‘type’:’eq’, ‘fun’: lambda w: w @ ER * 252 * 100 – mu[i]}) result = minimize(f, np.zeros(5), constraints=cons) w_optimal[i, :] = result.x sd_optimal[i] = np.sqrt(result.fun)For any given iteration i, what is the shape of the array w_optimal[i, :]?

Read Details

The law of diminishing marginal utility helps to explain why…

The law of diminishing marginal utility helps to explain why supply curves are generally upward sloping.

Read Details

Suppose that you want to create a function that receives the…

Suppose that you want to create a function that receives the weights, the expected return on risky assets, and the covariance matrix between the assets, and returns the annualized portfolio volatility and expected return.  def ER_SD(TO BE FILLED): ERp = w @ ER * 100 * 252 SDp = np.array(np.sqrt(w @ Cov @ w)) * 100 * np.sqrt(252) return SDp, ERpWhat should we substitute TO BE FILLED for in order to achieve the desired result?

Read Details

Consider the following array: a = np.array([30, 101, 18, 190…

Consider the following array: a = np.array([30, 101, 18, 190, -55]) If I want to select the last element of this array, what is the only option below that does not return me the element -55?

Read Details

What is the main purpose of scaling your data?

What is the main purpose of scaling your data?

Read Details

Consider the following matrices:

Consider the following matrices:

Read Details

Consider the following code to identify outliers:1)from skle…

Consider the following code to identify outliers:1)from sklearn.ensemble import IsolationForest 2)iforest = IsolationForest(random_state=0, contamination=0.05).fit(x) 3)y_iforest = iforest.predict(x) 4)idx = (y_iforest==1) 5)x_no_outliers = x[idx, :] 6)y_no_outliers = y[idx] 7)print(f’Total Number of Observations: {len(y)}’) 8)print(f’Total Number of Outliers: {len(y) – len(y_no_outliers)}’)Which line has the label without outliers?

Read Details

The word ‘like’ has become hackneyed. Rather than being used…

The word ‘like’ has become hackneyed. Rather than being used sparingly, people use it as verbal filler between pauses of actual verbal information. The word hackneyed as it is used in the sentence most nearly means

Read Details

Suppose we consider a one-step binomial tree model to price…

Suppose we consider a one-step binomial tree model to price a derivative that pays in the up state and in the down state.  What is the terminal expected payoff of this derivative?

Read Details

Suppose we are trying to implement an ML model to capture a…

Suppose we are trying to implement an ML model to capture a highly nonlinear relationship between two variables. Which of the following options does not improve the model’s ability to capture nonlinearities?

Read Details

Posts pagination

Newer posts 1 … 62,198 62,199 62,200 62,201 62,202 … 82,138 Older posts

GradePack

  • Privacy Policy
  • Terms of Service
Top