<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">
Hi NCL users,
<div class=""><br class="">
</div>
<div class="">I’ve bumped into some missing values in my independent variable while trying to do a multiple linear regression analysis with reg_multin_stats function.</div>
<div class=""><br class="">
</div>
<div class="">I want to produce lat/height plots (levxlat) of the predictors for the 31 years of my time series after the MLR as well as look at the Yest from those in terms of its spatial patterns.</div>
<div class=""><br class="">
</div>
<div class="">The error I’m getting is <i class="">"reg_multlin_stats: Y has missing values. Not allowed!”</i></div>
<div class=""><i class=""><br class="">
</i></div>
<div class="">PrintVarSummary of the variables I’m using is just below, whereas a snippet of the script is following after that. </div>
<div class=""><br class="">
</div>
<div class="">Any ideas on how to get round this problem?</div>
<div class=""><br class="">
</div>
<div class="">
<div class=""><i class="">Variable: WSTAR<br class="">
Type: float<br class="">
Number of Dimensions: 4<br class="">
Dimensions and sizes:<span class="Apple-tab-span" style="white-space:pre"> </span>
[model | 6] x [year | 31] x [lev | 31] x [lat | 64]</i></div>
<div class=""><i class="">standardize_op_ncl :<span class="Apple-tab-span" style="white-space:pre">
</span>dim_standardize_n over dimension(s): year<br class="">
NCL :<span class="Apple-tab-span" style="white-space:pre"> </span>month_to_annual<br class="">
actual_range :<span class="Apple-tab-span" style="white-space:pre"> </span>( -0.6522911, 1e+20 )</i></div>
<div class=""><i class=""><br class="">
</i></div>
<div class=""><i class=""><br class="">
Variable: NIES2<br class="">
Type: float<br class="">
Number of Dimensions: 2<br class="">
Dimensions and sizes:<span class="Apple-tab-span" style="white-space:pre"> </span>
[year | 31] x [reg_index | 5]<br class="">
Number Of Attributes: 3<br class="">
_FillValue :<span class="Apple-tab-span" style="white-space:pre"> </span>1e+20<br class="">
NCL :<span class="Apple-tab-span" style="white-space:pre"> </span>month_to_annual<br class="">
standardize_op_ncl :<span class="Apple-tab-span" style="white-space:pre"> </span>
dim_standardize_n over dimension(s): year</i><br class="">
<br class="">
</div>
<div class=""><br class="">
</div>
<div class=""><br class="">
</div>
<div class="">
<div class="">NIES1  = new ( (/5,31/), "float" )  </div>
<div class="">    NIES1(0,:) = reg(0,{1980:2010},0)</div>
<div class="">    NIES1(1,:) = reg(0,{1980:2010},1)</div>
<div class="">    NIES1(2,:) = reg(0,{1980:2010},2)</div>
<div class="">    NIES1(3,:) = reg(0,{1980:2010},3)</div>
<div class="">    NIES1(4,:) = reg(0,{1980:2010},4)</div>
<div class=""><br class="">
</div>
<div class="">NIES1!0 = "reg_index"</div>
<div class="">NIES2   = NIES1(year|:,reg_index|:)</div>
</div>
<div class=""><br class="">
</div>
<div class=""><br class="">
</div>
<div class="">
<div class="">nies = WSTAR(0,:,:,:)</div>
<div class="">test_ = test(0,:,:)</div>
</div>
<div class=""><br class="">
</div>
<div class="">do gg = 0,dimsizes(WS_&lev)-1</div>
<div class="">    do hh = 0,dimsizes(WS_&lat)-1</div>
<div class="">        test_(gg,hh) = reg_multlin_stats(nies(:,gg,hh),NIES2,0)</div>
<div class="">    end do</div>
<div class="">end do</div>
</div>
<div class=""><br class="">
</div>
<div class="">Cheers,<br class="">
<div class="">
<div style="color: rgb(0, 0, 0); letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">
<div style="color: rgb(0, 0, 0); letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">
<div style="color: rgb(0, 0, 0); letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">
<div style="color: rgb(0, 0, 0); letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">
<div style="color: rgb(0, 0, 0); letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">
<div class="">Andreas</div>
<div class="">---</div>
<div class=""><br class="">
</div>
<div class=""></div>
</div>
</div>
</div>
</div>
</div>
</div>
<br class="">
</div>
</body>
</html>