model rwalk_meta; { ## Meta-analysis of individual pathways ## Movement arises from a random walk but the variance depends on an environmental covariate (temperature) ## Observation errors (epsilon_t) are constant among habitats (measurement error) # Assign hyper-prior distributions for the hyper-parameters of beta beta.m~dnorm(0,.001) ibeta.v~dlnorm(0,.001) # convert ibeta.v to beta.v (Note: Changes the precision to the standard deviation) beta.v<-1/sqrt(ibeta.v) #Iterate SSM over multiple pathways for(k in 1:P){ ## Process Error (eta_t): ## --------------------- # eta_t ~ N(mean = 0, variance = (sigma*exp(-beta*temp))^2 ) # log(1/(sigma^2))~N(mean = 0, variance = 10^3): Vague prior for the precision. isigma[k]~dlnorm(0,.001) # convert isigma to sigma (Note: Changes the precision to the standard deviation) sigma[k]<-1/sqrt(isigma[k]) # beta describes how rapidly movement variance declines with increasing temperature # beta~N(mean = 0, variance = 1000): This is a vague prior beta[k]~dnorm(beta.m,ibeta.v) ## Observation error (epsilon_t): ## ----------------------------- # epsilon_t~N(mean = 0, variance = tau^2) # log(1/(tau^2))~N(-1.386294, variance= 1): Informative prior for the precision. itau[k]~dlnorm(-1.386294,10) # convert itau to tau (Note: Changes the precision to the standard deviation) tau[k]<-1/sqrt(itau[k]) ## Initializations: ## --------------- ## Y -> True locations (alpha_t) ## Y1 -> Observed locations (y_t) # In order to get first true location equal to the observed location (i.e. where released) we do the following: Y[k,1,1]~dnorm(Y1[k,1,1],100000000) Y[k,1,2]~dnorm(Y1[k,1,2],100000000) isig.temp[k,1,1]<-0 isig.temp[k,1,2]<-0 ## Interate transition equation: for(i in 2:N){ # cycles through locations for(j in 1:2){ # two dimensions (x & y directions) isig.temp[k,i,j]<-(isigma[k]*pow(exp(-1*beta[k]*temp[k,i-1]),-2)) Y[k,i,j]~dnorm(Y[k,i-1,j],isig.temp[k,i,j]) } } ## Iterate measurement equation: for(i in 1:N){ for(j in 1:2){ Y1[k,i,j]~dnorm(Y[k,i,j],itau[k]) } } } } #These are the data required to fit the above model. The dataset contains the observed locations (Y1) and SST sampled at each location (temp) Data list(Y1=structure(.Data=c(20,35,24.6568565302173,35.2111907770308,21.4906328819218,33.6585274705284,31.7699325138545,43.4134654088153,29.6908618604388,42.7100140735235,30.7624444474798,40.51468669044,30.1284070649592,42.2833598661564,28.2988422486283,42.1917460507737,29.2233238544682,43.1944483054125,29.3195400234907,43.7970477611338,30.7217840711249,44.0590192892359,31.3278392626681,45.3096165462132,34.7051681243438,42.8482328551426,33.3691315376406,46.4016312024318,35.0616850509119,46.6593943442766,38.4499639440495,42.7939942673754,41.4155640099676,45.7022005332735,38.3945768247164,47.9712952473273,40.5409705802929,48.6920552549785,41.6783568324454,46.7863263207975,42.3119895502624,46.1886392708794,41.7050034550211,51.6628172925248,40.6306038187039,50.1507975756385,42.0911951957589,54.6730734665115,42.5961537546469,50.3368728357448,35.8809817378555,48.9526774610639,41.7628562927014,50.9994176021139,44.8759399669672,52.3199308273117,39.4643557356593,50.6308020205686,40.868561274534,52.3144597207683,41.742508784707,54.0259890182137,44.4051707823525,53.5642803421552,41.9064875919723,51.2169246532472,39.247815763953,51.484981378813,38.2572024971417,52.1509181749578,38.9137799774765,51.8747783180893,41.796951114151,50.6898519636728,43.3466162381994,46.9101922884539,40.9346137569826,52.6634906791914,48.0483194143997,46.8052782751355,48.3239620687509,48.873652894264,45.1134549816182,49.3353586755993,43.937964706359,48.2391006725797,46.5747960801607,49.5674663137538,48.807680224368,46.5047665060379,45.5562243092904,49.2803619235254,45.9447144473486,48.7609705759545,46.9301226639663,49.3769062424242,45.8342989879602,48.1644025952529,46.7716730385927,50.4324220815188,20,35,11.1012829707881,52.9944096110412,13.5311978006395,54.5125220703193,11.2519792247507,54.1300661540071,14.2842342564989,54.0450325991001,11.9594259482744,51.5854623233474,15.2078555522937,54.8413866483991,13.5960710443853,56.7594687796769,10.0783427361324,57.409323303001,12.478897102488,55.3678612703436,14.7184266376272,56.7282382281711,17.2139136044525,55.1033607760149,18.2184077688002,57.2558160364435,15.747917649445,55.3355402044914,17.4279032605322,55.3542347333061,15.4043090342392,55.9786823094286,17.9192462580963,59.6491772407357,16.7086304048267,56.080359745399,13.3486485641527,56.933337623208,12.1445813944007,55.7017197045001,15.7372440053156,58.2820839478597,16.2696012550795,56.4583176051011,15.6877143191141,59.9686637411511,11.5279893718999,57.8816832084732,12.7343782039614,56.0598103527032,15.901770189423,60.0614445077356,18.0633982267064,58.9272633822124,15.9200375403145,55.3632931658497,14.240583233761,58.4559958556383,17.4384433193374,55.8226260099157,13.544044181462,58.1108339387682,14.2435158780013,60.1434800378598,17.4956071048654,57.3586616614252,17.3347410458577,57.2566010913276,16.6637083595473,58.1041773771215,12.592709209723,57.9973670068848,15.2528154987942,58.9546499958006,17.0361901696486,57.2369202260459,20.7382847976138,58.1769275858128,12.423103472028,58.241549726945,15.9791669825184,60.2080896254475,15.7373857209816,58.8782725883573,17.6041329429246,59.3669207690034,18.589465785653,58.1670878973165,15.6398800064961,57.226798065894,17.5878105243268,56.7578816231248,19.3044660499829,58.5293461752031,19.557693870582,61.3523449487545,17.8386467105991,61.6384682327713,14.7362224751655,58.7855274934707,20,35,17.1565718728257,36.2619953261624,17.7584193923581,34.1021372826641,15.8167380221746,34.8771808267103,20.3031503165196,30.7181133533676,27.9026874618362,30.6752371801058,28.8557005157612,32.5918590153886,27.0341439650516,31.9922593033266,28.177924837444,32.2986899114638,32.2069710650322,35.6263750140442,29.1578051217011,29.8718123070723,31.9727208246395,32.4330240745853,35.2010787209293,41.3530880467419,37.0065955570577,38.2833708927352,34.4923372865433,42.572139460717,37.7225833754719,41.6600104836351,42.1152751279765,42.0937735064105,36.5818671555082,39.2987130215125,38.3720179843526,41.0841200880455,35.9203000400948,40.6020660503395,38.6955276861089,38.053705630644,42.2790975012321,42.2162449699136,45.3238215436694,44.587415547474,44.8197692904718,41.6491378516556,44.1850907989981,38.0332480591441,44.6942595969415,44.5116741669735,50.5861895407202,45.7092565730433,48.8445587627042,47.2262131291124,52.6870006251946,46.4630484008494,54.5139094660947,48.6466686171788,52.9273307682882,49.6861198648914,55.5406482799543,50.9296465423709,53.0310795230374,50.9855012977165,55.6014136429013,54.7680498148187,51.2415994070512,52.7666884374343,56.826031028975,48.9808320233206,55.3218567490091,51.7911227702851,52.6289135086804,53.4395817463952,50.7108715813385,52.6224966249211,53.1812021614936,51.7657497215007,51.9775789120152,54.6007125858175,51.7689852483933,54.2311092775063,52.2185055737574,48.9378835714289,57.0510583012671,52.7505030689699,52.1930045318718,51.8167316611978,55.5622166636677,51.8485314475613,49.3699922512298,51.423504461808,53.3970297958169,51.7169848268112,49.1682284669997,51.7862558466079,52.8723477624486,48.9252442575786,20,35,29.1934609889022,26.8135203548316,32.5852772484013,29.338482428331,35.8822461992731,29.2643326660277,35.4851161295747,29.7883659656458,35.5747056864598,32.1357574227921,34.6291280846576,31.4483233017345,37.5495058162553,27.6183326867683,35.9263178883331,32.1388227380149,36.0940068100862,32.4682352528832,31.0082344840018,31.313292285472,31.9031206657251,32.0865465983531,30.9200403855922,30.5713601992572,34.9009724692917,34.3183860658517,33.9965021486708,35.3506460002716,35.9576122272406,32.737773540577,33.4454989824121,34.1191598608332,37.3660939309936,29.4165536545267,41.6886587025934,33.6750066728981,34.2799946628263,29.0696493163048,33.827308343926,30.7803564245052,40.408077629815,31.9168453787134,35.8149844764185,33.7653831310834,35.2709040190776,32.2600792913865,33.2652819097205,32.2001215708876,38.7947447638255,28.6744412427556,33.3115700008586,33.409848970186,33.8083605947443,28.7294568463676,32.4035533491246,31.2139501719054,35.9509322047287,26.4203987527452,36.9309093627711,28.8764212250045,35.7264504052345,32.7967579256594,35.4417735133822,32.6425818292222,33.2954756936827,33.075834037563,34.460995072059,27.3101570077274,36.9477537035294,31.9260317607589,37.077688218132,26.9153678573496,34.6355671564661,32.80275728074,35.4525981085035,32.5805878917376,35.6935607466091,32.3514409626796,38.4716702758208,31.9593547128948,38.7487249741751,30.2824049452433,36.3159175060779,30.1515154511458,39.3409747765676,32.6250909245274,42.5288105484494,34.9807689864535,37.0981142664391,35.996510057197,38.5811614505334,31.4178531566503,39.6269838371969,30.9294380591028,35.1089315575452,35.176109472876,38.5885257955639,30.5493193958244,20,35,28.6796860760677,39.6794482746262,37.7731690107445,35.1934779301411,32.5583985190317,34.1605094916983,30.2754160036255,37.6149325853393,36.2841980073546,38.905481579326,38.9070783120282,39.3214005312256,37.3857073922731,36.6336286260299,39.2960351902523,39.6372332245393,43.7910654613848,38.6917497338184,43.8489343569782,39.6784813416926,41.7183968008492,39.8643829710153,43.392453288697,39.9497606777986,44.4775871395547,41.9818347662805,52.4379195942826,40.5590479244637,52.0494912596023,38.9913297675586,50.3504696135527,41.199960598143,48.4023964444663,37.8540440567714,48.9011264085324,35.8461537514504,43.1941780527286,39.0816784233522,50.8094352484755,40.8678515308555,57.8574410629678,44.6711070776979,59.5822828965897,37.7188070256818,57.6501775802897,41.9185531219391,63.2572432725658,40.4526839756476,61.594799309235,39.8861711994952,63.7134223968618,38.3482855145054,70.2551783330752,38.9828661375729,68.3896351007048,40.2217130974065,65.7873821720131,36.339519490952,67.7184239274448,37.7544003767853,66.9411993058776,39.2965473920245,67.1085275372571,40.8329620584475,64.9599441633674,40.4994318826105,69.3551653919312,38.6398765440447,65.2884547502298,38.4713216005685,69.1577361362989,41.4305620983082,65.0893281967329,40.770239899215,71.3355811189238,40.2763569190032,72.1033424690523,35.3553445844186,69.8703504334351,39.1939514670347,69.1295884958893,35.0776616792128,68.1543639146906,40.182568902001,67.8050465595021,40.4447869783039,69.2619038391907,42.6125153727607,64.8225833918925,45.0715792738971,67.606570896215,42.3983096426051,69.5532735895944,43.4302575997414,69.8785496389112,45.039130696012,69.8188242207124,44.341816900319,20,35,55.1118361397368,28.059758976749,58.8944580188511,27.5792452075079,55.9925389587251,28.5704309965246,53.7105050259439,29.3564407584159,52.3841500725736,30.8195492438398,54.242160209082,27.869952620631,56.7160191646168,30.1288851646378,57.0908168967317,33.4025320237616,56.7132079225927,28.7733619049616,56.1146813981986,34.3297434584826,54.4995431892993,29.3572944643603,53.3015388308698,30.3470642546785,55.6355163857506,29.9140633489336,55.8652691801721,28.4035019494286,56.4479862706612,26.7353378928766,57.2304410938619,25.9011477902069,54.5167165946672,28.1382750833735,58.7397594480031,29.9153332451416,55.9017790982991,31.571658187813,55.8431515962921,27.3271294433134,52.2796574365119,33.119602082469,55.1249033029345,31.6577137796858,57.2844385392721,29.8910348863829,59.0420182866914,32.543569473766,56.7776581553711,30.5365295145999,57.0680072224577,28.2001690808426,56.4746898112065,30.1339099306096,55.3989601394407,28.6257296882462,57.9928098588212,30.0450151560455,59.6155200217346,29.4690890441531,56.2709123448335,29.017341302571,59.8479662478726,28.1432468014152,58.325641407496,31.1798704092385,56.8163194235844,31.0489322439663,59.3298345945431,32.1466224394116,55.2482139628936,32.414705962459,55.0909692258644,31.040236627764,62.9081868332671,30.3013544345103,57.656894301962,29.3001838416342,56.0024529754193,34.1560653576819,58.5990536400204,32.5544522753825,57.2517841604387,33.2995380563755,58.2541774186759,34.0004476642623,57.4357733775182,29.0128227508563,54.6320108817348,31.6043016373145,57.7531072922506,27.609827359092,59.2044513892184,26.9785247327175,57.7204248415469,31.5836813149718,58.3113899193072,33.0091257459882,20,35,11.6737440112262,83.4822043730521,16.3442665562506,81.6134006927296,15.507808659853,82.5729091615428,11.2722496319129,80.0913048833183,11.4419644842084,79.91294383486,13.8678860851314,82.2808731208348,15.3850639613388,80.1243418346131,11.7276229811856,80.318482086762,14.5619176058943,83.3608394561148,12.8948404317556,81.3158283409189,14.9182233904226,79.1875227400646,11.1695646078872,78.473514556807,10.5176108600878,79.913714432608,11.8426476729905,83.8259937857118,16.2338195532319,80.1939465788099,12.7081946329275,77.0990650908387,10.4562402477307,78.839619460297,12.3925901632056,78.3842500680209,14.1601389931996,81.0791866641511,10.5569857489028,84.8039905741604,10.3588715745994,81.9710706866615,13.8405867997902,86.0703993431714,10.9456712275099,84.7676402971412,8.43377634149032,81.0026707639981,12.7472381113125,80.3686219926334,15.1323380135334,78.5161653159534,9.25086332137503,81.5142223857779,10.0138568354799,79.8466658679897,13.0020353680809,80.7294770386859,16.9634299041545,82.661777267249,11.2420048889749,78.7738059196163,11.3997667103323,79.4894469592913,15.7807985722706,80.7140023444243,17.1691202009875,78.6441477873409,12.6807464945803,78.7174007810988,11.0486202334901,81.6839448864878,8.45029216478814,79.6544852183653,10.5682777100279,81.3999853418817,11.887170513437,80.6565450222874,8.2970684395603,79.571291128364,11.7345845835987,75.8394248840554,14.8886732998764,80.9275651684831,11.5227535118931,80.0182403100975,14.0019500341626,75.5126234840276,11.6816511466066,80.1287244387288,11.5550672034442,74.8275696824875,13.6377389268687,76.8937669181982,11.7123416080563,79.4064572022771,12.1524803899701,79.6608174403215,20,35,26.7386732658023,21.4827037093699,20.1435670110026,22.0574909089548,29.6404378924643,17.4340683307173,23.906850598244,19.4637117658355,28.6072389627695,26.7924736221692,25.3171866424278,19.8714457562147,24.6823426562693,20.8072074199907,24.5070341368178,19.9642006254683,22.7361106230963,14.7974944052967,24.038337853009,20.5522723612107,26.9196736134983,21.1657800624038,21.5240958916464,21.5116461125401,30.7885043049824,21.4615716981816,27.5080516926588,20.2361021333867,22.313140276602,21.4195347158132,26.7926193779314,20.3041534403583,29.925602337153,20.3760781195432,26.0451707522254,18.6398709200857,25.0867923804671,21.6398571165961,29.2378459657026,19.2363654473012,27.6432970716983,19.4171559663002,25.1418101730225,18.2366275105264,29.0353592795094,20.2392731578877,28.1079842087999,19.673595941542,27.4115673358292,16.9572900351293,27.0129967288665,20.6945110532248,24.5171450825519,20.3476888014966,27.7177283977838,18.2579872503685,28.0800100201305,17.5180372478664,27.5848878559956,22.5349746620527,27.5860601251253,19.7224895903225,29.0754441499352,22.0105129945689,27.0746446231402,19.0374434923898,26.0352065760725,21.1313431068488,20.6294893355747,20.676587862402,25.4747168016751,24.1514067098587,23.6154887447417,25.1124114196138,26.8448192678447,22.1667076783359,24.2761235405955,22.0291633015273,24.7528885934025,22.4113712226573,23.8355058785162,21.0577558850684,22.7800349049763,20.7288792715378,25.6531398335286,19.1530824429002,26.513638507337,18.33483751166,31.5039120633116,20.7013780240732,26.2250770905586,22.6205477209592,28.7503006278306,19.614576367868,26.171571690803,20.346331599538,27.6409998494303,20.3016768174637,20,35,5.6615646707391,38.5593760812422,3.51764449405122,44.6671837335921,2.65749661521214,44.3646602249584,1.83276890491965,46.7994065674158,3.54011022813746,44.9117991421487,6.30530628357346,41.2936838137147,9.39655130718,42.9488256910053,8.69836316847366,47.2601700013901,11.5517693698639,50.7599506181298,11.6162204566794,50.3168920611672,12.8538644547744,46.9604835338091,12.8162061568913,48.5896846398375,12.5057561072584,50.3489737665394,6.84719098286386,46.2807545952921,5.5827728290366,46.480467611573,9.13272948209642,46.0813856961351,13.93142370638,45.3815967839341,8.90134458148283,45.9068351463473,10.7015936065125,47.3493075528712,12.0539812452119,48.889127474452,10.8090011070269,46.7018451146062,12.4238692394297,46.7162967006999,11.2310672207204,49.7646821646468,13.6731808311623,53.9150561231075,14.5767135384688,56.8700606125607,13.035169920344,53.231303362962,15.0576899634704,53.353300319119,13.7493952884537,52.6957156335013,17.120293368698,54.4093902318113,14.3556902586488,51.425782324852,15.7450086026231,53.0628838080069,15.5188337913809,55.3053214018306,15.2184697303735,56.7234507273382,16.8528235729864,55.2722130616221,16.9865703368674,57.235237232943,15.0966089985036,55.8677499090753,15.9520748228534,56.0594875753727,13.9879048600279,54.7478090426995,16.3364936043852,55.725365645818,15.8557937769504,53.9532865939154,15.6951317507783,55.1378569962421,16.2170408973424,53.1542187496775,18.7858184090514,55.8883551099962,19.040709530179,55.096826236429,16.4830386560042,56.5688612836299,18.1671103855552,55.9881881500541,14.8521940031802,54.896216751053,18.4097532283329,55.5976254556361,16.035395327477,55.829811472447,20,35,22.9508489615603,27.4424016796204,26.1798500861053,34.0902979972612,25.6755998368976,22.0425773852859,23.6564766718459,22.5101786989201,24.1668821265548,20.1742539218071,25.0972263473554,24.0159962835284,25.9535545778099,21.2982574668359,26.1728135336439,21.45443570429,27.9088802647438,22.564383119978,22.55839768545,20.5129268885701,25.418426828648,21.656199362183,24.7336802052029,20.9092398138498,27.175981338501,23.699155971328,26.1922136607576,22.8944936028691,24.3197380365206,23.4308610192272,27.3992642425838,19.8117680437502,27.8813809753236,20.5617071087709,24.6256905237375,22.6409703038378,24.9834497085746,20.7065981759286,22.4188031217014,19.3564203208278,26.8456164732139,20.1639170973844,27.9792747757445,21.3144299420156,25.0280352016568,20.1081520632717,27.3326270777076,21.485046495599,23.519620745246,20.4942064339253,28.7342487331725,22.3626960835078,25.0192436769229,24.0866227849556,24.8879459215194,18.4325687361212,24.4607502397956,22.2178691013477,27.2874217275223,25.7141266308506,23.5387260771429,18.3833315208456,24.2824786206338,22.4886797453924,22.1868466401919,19.0195096433934,26.4162529455265,24.7944169950799,26.6668333042609,27.0660039567349,23.0800205691056,23.5254710638757,26.3872944267982,25.4505171057893,27.6323017619383,23.2268613062038,26.6606802607128,26.4806492142069,28.7261520067486,27.6129701085094,31.0769653039086,25.4516160673433,31.5395573086901,24.5911916427938,33.9683973455282,35.2721246615736,36.8235057486542,35.5821401142067,33.0672315021059,35.4344407626353,36.3095910938629,37.9307716042382,36.9958362178282,37.3776503231126,39.3807342315162,41.3711503358892,36.1536701676452,39.6493890313031,20,35,20.6468744114806,33.9914108208115,18.156597610135,36.3105253958309,16.6649788598815,31.5376659787231,19.9756911011891,31.0991835254188,22.3390890005608,36.9784641684708,18.9329797118769,40.6903398835974,17.8112356224166,38.7508158753602,6.53566144320898,33.4901562507306,6.80298147417826,47.5710670859633,11.7485524548477,45.87742100074,9.58553474968864,48.0709811596419,10.558966441248,46.868886268788,11.5208865718785,43.4140078833003,8.34719793405249,42.7925038695819,6.44056870568191,45.7789240616881,10.4181353352679,44.2022283721916,10.3228824239948,44.2883257690583,8.81110360774711,47.1577445346853,11.2840870486668,47.0903886487609,8.63572446863041,49.4647393022246,8.3017876553693,45.197295673039,12.1107870061423,47.7757981689014,9.84933496257208,46.1993814328139,14.8576516625282,46.0392525291602,11.8541233245543,45.1463149396659,11.3753400512354,42.7202498051772,10.7885784176934,42.2335481631295,10.1868517842809,41.9565484064754,10.6914285401141,46.8937614523899,11.0116302283002,45.9308777845532,13.0387145956424,50.602751179384,10.0364180574599,44.1928289765566,9.23016197319941,48.1811911875747,7.98502612724904,46.1475183273503,13.3593602265903,44.6700772558481,14.6850149795048,45.7773451414153,8.79605943959379,47.3140647834331,8.21610308544175,47.0434299843381,9.72377129638637,42.8647790463046,10.3099433530297,47.9277254127598,9.62238838515196,47.5954984672414,11.357853946712,48.7540074602692,14.2599797479779,44.0846414228897,13.6403601400541,50.9448896610168,14.8334481080409,50.179148319934,16.1492051173781,48.7792045387037,15.3910655374704,53.7183393590662,16.4041867802176,51.3677364743245,16.1121631587138,50.6050817918411,20,35,19.9661892743528,39.7623107444586,23.0433180451118,35.3577533178454,25.5620158375741,30.7267382248642,24.718985466625,35.5853161159643,24.5477351503788,32.515366794004,26.2214997455271,34.3201436696569,24.3845470940479,37.4338153735293,28.0862988760806,41.4514984139226,28.2884709165544,43.911975868001,24.5780834630024,45.1132961903494,25.2177478498418,49.0653994552934,30.3927749296415,46.0754000834147,29.6446604433802,46.7808339629202,26.8559855691725,46.0190967644022,33.8296977511274,51.4421108930976,30.219252387833,50.6161596934664,34.4857811557886,49.1256666249049,30.7370134339026,51.9080055925827,33.016642363715,53.3190514679513,35.1122663741217,53.9499634207404,34.4863580508589,54.7001953353973,30.8040238228337,57.3012211139106,33.634627447756,59.8729358541336,38.3048312956674,60.8423716466366,37.2983420293203,61.3841397983135,39.6548086149407,63.4324889710926,41.1775710505307,66.5964587629945,34.67647850361,61.7160286405461,36.2978724776169,65.3202129241973,36.4687076797961,62.2296021624813,40.2222499794548,67.0383380244981,40.3622247985982,64.4814643088293,42.3157162111465,67.0556015711471,40.9407723544742,69.8508467740667,42.7533191213947,63.0857142282663,40.2518691334664,67.0481878646427,46.5136657331452,69.2476637730845,40.8240695773096,65.3177801078119,42.147885218681,70.9980045337678,40.580569980654,66.536817182117,44.6756460848665,66.0188837078371,40.6503111348184,71.2932315437749,43.8021284563224,68.3234135049615,45.3816326621198,68.2243027464431,44.6165667253459,71.5196309992571,49.3244281478734,68.2073741589986,47.5989827745975,71.2676788516115,50.5524824609176,70.6693529792959,45.4120768036342,73.9872627301259,20,35,21.9349086846718,33.1866206865799,23.0202038079033,39.8689512964812,23.9720367191473,38.562530067215,30.8813306093531,42.3888941666071,34.4791424256798,37.1954616915733,32.4137343055732,41.4366809384225,33.1309675233522,43.6201776305869,33.1338495928734,38.4409417822845,36.3073554316922,42.9024509414482,36.3817841802326,40.3335596267735,41.6778777696526,46.3808242809605,39.2042452012599,41.9216762200338,38.8726184445929,49.3419653391128,38.6279415746101,44.8361074004477,36.1989514799596,47.2652570749138,37.0002598349143,46.9693262264509,38.4415347194377,46.2155924808483,38.769680590479,49.8388023418568,35.0797016115575,50.3257258006487,38.7589950613486,54.5429136541072,36.841666167445,51.8415799448778,34.140749647141,51.8613624561715,36.0347395437036,49.3958832859505,39.817478742871,50.8779807659991,36.1162596409611,55.0567611899786,34.7608462056394,57.4893437257316,33.6962365117628,55.9497958803646,33.7784166106398,58.2612689505149,36.1514399866834,62.6340729558903,36.766501248352,58.5042915040042,35.5208341107179,60.7885379736998,38.8313463219012,63.1087473303161,41.2393291931085,58.6320736131794,45.1467566977295,58.4887552721348,39.2391196399306,63.1289612531371,42.5479152928291,64.4596063668147,42.2955849245336,58.4347897194892,38.5472568347471,60.4788781223979,43.2306607699498,60.7184295408363,41.121888303203,57.7379232551972,41.8198141020383,61.4678277726661,41.9300186977083,59.1016870389514,42.7203543537228,59.1739935311467,41.2708754350628,59.8133154577783,45.2778930648507,60.985631863725,38.4172953735296,61.2988223108512,40.9131548168791,59.9829118050199,40.4598528098965,59.3988358514574,40.4110810879526,60.8037636393625,20,35,11.5371494593803,26.6347043680466,11.3095423456441,25.9711046783871,9.88641636819114,28.9621349172393,11.8496007546148,31.1751104250031,16.6947358162124,28.7394038077147,19.6473620998727,28.7935319991837,21.23483717752,26.8605459331563,19.9198380957827,26.2338300376109,20.7493211389826,28.386294092074,19.3951633451556,28.5096232647744,25.5364975290345,31.5659321912782,28.8373148073203,30.4004562644477,31.6784167438502,30.4469307885639,34.7939319934559,31.6836020666354,30.746908714336,32.0112939624197,35.405987401269,32.1795452675196,33.3664741864634,33.4399789903438,36.4455552569867,37.2907551665154,41.3711154291245,33.2233010111517,36.7916136836627,35.3423153585011,37.0715405015911,39.8882856255995,39.9939097281731,41.3665188931072,42.0982827592735,40.1733670722934,42.7508520294591,40.9108326704809,37.7139007871148,40.074699978711,38.7988705328811,44.4613806195601,44.960353403171,47.1460698444492,47.6745033607155,50.2468334122892,47.3490521049435,46.7255970208928,43.0381574929087,46.4800567975038,39.0525497844849,45.6611946456912,47.3260697584036,45.9514467375585,44.2547412715376,45.8389717704002,44.6884995240712,47.4853347265543,45.4630504627567,46.5701190572415,42.9578562148643,48.5175470298527,47.6891814439515,46.1977938185958,45.2956614935286,48.106896058407,46.6424827711116,45.5051190792012,43.9415387152659,47.0664670625007,41.4299057865712,46.7322652627819,45.6968316652261,48.1835817899605,47.5626810392126,48.4406944775076,42.814812719106,48.0381093699042,42.0295056228857,51.9436691382966,45.7838814762182,52.6710872118851,43.3985971369025,48.0037547477791,44.5871387056626,46.648936761008,49.9816750656484,50.3042464968842,20,35,36.4387892596165,52.2733421434647,36.1607463648465,52.1307482149363,35.2989077235735,49.1493405718767,37.2069765956367,51.8575786782622,33.163393125343,53.4882266568603,36.0926800166153,53.1081890191976,35.2124770311681,53.2729363917786,40.4896638094942,52.9876817397934,32.9682053337313,51.5086305911816,36.0749278781507,50.2485292932097,34.8430648704266,49.8801279062246,33.5770317731999,53.0982974422922,37.5086464813098,50.8923371881439,35.0425560667121,53.4881782613579,35.9725251333168,51.666995456425,31.9597510013385,51.4710152739408,36.0169997244216,52.4114413415721,36.9270402137025,52.4296544082759,36.7252754471231,50.0714770424853,37.4669723601765,51.7137389585172,41.2030563876675,52.3463135807563,40.1336500696325,49.725622278188,38.6740591602497,53.7268678786177,40.2506299516943,50.8038163351158,41.4419752391356,53.6484253898356,41.4106676733051,50.8740951215104,36.7831210487158,52.9753636958866,42.5468885437811,52.2409792362012,40.1090554987031,54.8899739615341,37.4840244617337,52.7894442558657,41.648484955517,53.6660273467357,40.8903222948075,50.0389762848645,39.7928393974822,53.9708552395595,41.0974767615961,52.0112798327863,42.4803461672489,55.4779066749053,43.3439947363226,55.2475708591873,47.0633884313554,54.3594421509028,46.9791867279649,54.8820849858053,45.5206426469447,50.8382675114813,43.0363041795724,50.1696474031155,43.2662708896583,53.3523253600669,44.4270611734061,57.2425108036458,47.5129891304885,54.1602613900267,46.7812201390604,52.4088161238452,45.2204977118402,54.0892916236061,48.1065534245157,56.0834771507661,45.8247557859096,55.8305743362533,42.3853044543058,56.1769282586099,46.8982101826614,55.7623618264691),.Dim=c(15,50,2)),temp= structure(.Data=c(-2.68668082330986,-1.02873744720018,-2.60096792841195,0.0955189028359297,-0.833114525293992,-0.897471944742373,-1.17892856037428,-0.833114525293992,-1.17892856037428,-0.837288637447743,-0.635225496921631,-0.837288637447743,-0.303960393529506,0.0705895982809527,0.195359386263508,0.265273627315752,0.378043445508172,0.475735168949519,0.475735168949519,0.00308251024225254,0.165936439121926,0.476591976721065,0.542194530963229,0.713729814535679,0.382432312156288,0.382432312156288,0.476591976721065,0.338280401924864,0.210636468890325,0.631656486357717,0.688147420970976,0.631656486357717,0.631656486357717,0.631656486357717,0.210636468890325,-0.0485450157257338,0.542194530963229,0.396864324400109,0.00308251024225254,0.699103266044478,0.533351642254216,0.699103266044478,0.699103266044478,0.515395154758297,0.515395154758297,0.515395154758297,0.515395154758297,0.699103266044478,0.699103266044478,0.515395154758297,-2.68668082330986,0.849187653798005,0.778885095020582,0.778885095020582,0.849187653798005,0.635771356155223,0.849187653798005,0.252769972942152,0.252769972942152,1.28592909641196,1.28592909641196,1.28592909641196,1.28592909641196,1.28592909641196,1.28592909641196,0.763457184742228,1.28592909641196,1.28592909641196,1.28592909641196,1.28592909641196,1.28592909641196,1.28592909641196,0.763457184742228,1.24093077158802,1.24093077158802,1.24093077158802,1.24093077158802,1.24093077158802,1.10324423157132,1.17142435884426,1.10324423157132,1.10324423157132,1.17142435884426,1.17142435884426,1.17142435884426,1.17142435884426,1.33722529273662,0.763457184742228,1.33722529273662,1.33722529273662,1.58396128608934,1.58396128608934,1.33722529273662,1.33722529273662,1.33722529273662,1.33722529273662,1.33722529273662,1.33722529273662,1.33722529273662,1.33722529273662,-2.68668082330986,-1.8298909939353,-1.72117160091673,-2.01485234489023,-1.31307284054381,-1.51843145074112,-0.453970048772045,-0.263301334362457,-0.263301334362457,-0.674216177798993,-0.418516892567787,-0.535714073168505,-0.0555120287666164,0.162345501721467,-0.189926302164867,0.179448050369739,0.321299460007456,-0.0538314741251193,0.321299460007456,-0.108705362924847,0.139854159178649,-0.233926177632297,0.512305001457955,0.195815436586105,-0.290278156245942,-0.896565165055612,-0.665378857583671,-0.250798834138912,0.0320038650827444,-0.314599871220495,0.512435129001344,0.295363516052078,-0.384426692325017,0.960780533889061,0.547990450119955,0.547990450119955,0.547990450119955,1.22938823555997,0.407982834369526,0.680730734754451,1.03839258114781,1.41754778583904,1.41754778583904,1.31434100403704,1.03839258114781,1.67938253080879,1.03839258114781,1.41754778583904,1.03839258114781,1.03839258114781,-2.68668082330986,-0.623737771018712,-0.289273963691727,-0.000925538803376196,0.180178485115776,0.722663755031805,0.722663755031805,0.32867886034662,0.720031527642265,0.264458101796405,0.264458101796405,-0.403043524644048,-0.403043524644048,0.32867886034662,0.514220654325691,0.514220654325691,0.32867886034662,0.720031527642265,0.514220654325691,0.720031527642265,0.720031527642265,0.720031527642265,0.720031527642265,0.514220654325691,0.720031527642265,0.720031527642265,0.720031527642265,0.720031527642265,0.695342061415163,0.720031527642265,0.720031527642265,0.720031527642265,0.32867886034662,0.32867886034662,0.722663755031805,0.404770982923845,0.720031527642265,0.695342061415163,0.514220654325691,0.695342061415163,0.79692047068105,0.79692047068105,0.79692047068105,0.824690442996708,0.79692047068105,0.79692047068105,0.79692047068105,0.491461833262226,0.824690442996708,0.491461833262226,-2.68668082330986,-1.16001848636334,-0.310997654141169,-0.609446966201291,-0.32396345604358,0.663573252785733,0.0111861222842993,0.0907070288705284,-0.0631108724790829,0.114193661756491,-0.131498066909744,-0.291801952840481,-0.403919473343396,-1.09628022413159,-0.961800675528677,-1.50206308993988,-1.7152480759147,-0.599924893823463,-0.732178691449949,-1.13534029781889,-0.7967957789847,-1.24223999465075,-0.955299021849668,-0.917886670176549,-0.930607458369212,-0.674325819571877,0.185659783363368,0.334349574197109,0.446740822038596,0.446740822038596,0.572707159914228,0.527026326941226,0.334349574197109,0.334349574197109,0.334349574197109,0.185659783363368,0.527026326941226,0.527026326941226,0.572707159914228,0.572707159914228,0.446740822038596,0.446740822038596,0.572707159914228,0.224392425537318,0.749888282843106,0.17625939633504,1.31055801635623,1.31055801635623,0.867989346602179,0.867989346602179,-2.68668082330986,2.2160842195696,2.2160842195696,1.86091195656134,1.86091195656134,1.86091195656134,1.86091195656134,1.86091195656134,1.86091195656134,1.86091195656134,1.86091195656134,1.86091195656134,1.86091195656134,1.7100756203543,1.35836472800613,1.7100756203543,1.7100756203543,1.7100756203543,1.7100756203543,1.7100756203543,1.7100756203543,1.74479821646014,1.74479821646014,1.74479821646014,1.74479821646014,1.74479821646014,1.7100756203543,1.74479821646014,1.74479821646014,2.07867437545663,2.07867437545663,2.07867437545663,2.07867437545663,2.04625751419599,2.04625751419599,2.04625751419599,2.04625751419599,2.04625751419599,2.04625751419599,2.04625751419599,2.04625751419599,2.04625751419599,2.04625751419599,1.74479821646014,1.74479821646014,1.74479821646014,1.74479821646014,1.74479821646014,1.63798251881555,1.63798251881555,-2.68668082330986,0.474233807099615,0.528025274724356,0.528025274724356,0.528025274724356,0.528025274724356,0.528025274724356,0.528025274724356,0.528025274724356,0.528025274724356,1.16705624956229,0.727029023239939,1.16705624956229,1.16705624956229,1.16705624956229,1.16705624956229,1.16705624956229,1.16705624956229,0.898504967952662,0.727029023239939,0.898504967952662,0.898504967952662,0.898504967952662,0.898504967952662,0.727029023239939,0.898504967952662,1.16705624956229,0.937569446386197,0.937569446386197,1.16705624956229,1.16705624956229,1.16705624956229,1.16705624956229,1.16705624956229,1.16705624956229,1.17472044683547,1.17472044683547,1.17472044683547,1.17472044683547,0.882221527242074,1.17472044683547,1.17472044683547,1.17472044683547,1.17472044683547,1.17472044683547,0.717719556336191,0.54689348368493,0.54689348368493,0.54689348368493,0.54689348368493,-2.68668082330986,0.993023659668181,0.993023659668181,0.636220930779139,0.678019071113446,0.678019071113446,0.678019071113446,0.613599678052166,0.0802228599369945,-0.119299192459187,0.0384099341977501,0.613599678052166,-0.119299192459187,0.238779502773633,0.975606056965534,0.884996232557136,0.975606056965534,0.636220930779139,0.636220930779139,0.771272622964353,0.636220930779139,0.636220930779139,0.636220930779139,0.975606056965534,0.975606056965534,0.975606056965534,0.238779502773633,0.636220930779139,0.975606056965534,0.613599678052166,0.636220930779139,0.636220930779139,0.636220930779139,0.993023659668181,0.678019071113446,0.393333003306727,1.13738741291509,1.13738741291509,0.685636828526745,0.685636828526745,0.685636828526745,0.500262263348354,0.500262263348354,0.0802228599369945,0.636220930779139,0.876191210474734,0.876191210474734,0.383776340114224,0.51011431694245,0.51011431694245,-2.68668082330986,-0.830222273969602,0.040454820835205,0.406633956632584,0.0213346844038885,0.0213346844038885,-0.399127536997678,-0.368159942624036,0.62135825504654,0.324530811299294,0.479929038227762,0.40329653524593,0.324530811299294,0.40329653524593,0.772477461164786,0.483935870594751,0.772477461164786,0.772477461164786,0.692225008543719,0.258372243275083,-0.0350915457760885,0.131182427140628,-0.0135286325982736,-0.160757492766782,0.0207434803718428,0.367597408938941,0.128525929656369,1.31721900072144,0.941919958877407,0.941919958877407,0.941919958877407,1.31721900072144,1.31721900072144,1.31721900072144,1.19906615851389,1.19906615851389,1.19906615851389,1.19906615851389,1.19906615851389,1.31721900072144,1.19906615851389,0.704739571654348,1.68917617095899,1.68917617095899,1.68917617095899,1.3629042385932,1.3629042385932,1.3629042385932,1.3629042385932,1.31510909505824,-2.68668082330986,-0.607717248645009,-1.30532738536487,1.13738741291509,1.13738741291509,1.13738741291509,0.586523683195839,0.354812871677076,0.685636828526745,1.13738741291509,1.13738741291509,1.13738741291509,1.13738741291509,1.13738741291509,1.13738741291509,1.13738741291509,1.13738741291509,1.13738741291509,1.13738741291509,1.13738741291509,1.13738741291509,1.13738741291509,1.13738741291509,0.993023659668181,0.500262263348354,0.685636828526745,0.586523683195839,1.13738741291509,0.685636828526745,0.685636828526745,0.685636828526745,0.685636828526745,0.324070698485878,-0.0783755048315012,0.586523683195839,0.0852576126134845,0.530505904176905,0.530505904176905,0.3692783121491,0.143568259449857,0.180659958936889,-0.313608987496714,-1.03099292691931,-0.203744419456046,-0.149991615349674,0.00892800736595526,0.259898804647996,0.0907070288705284,0.164914949135922,-0.0538314741251193,-2.68668082330986,-2.10916710853518,-1.72117160091673,-1.04440287157557,-1.01513142692964,-2.36367525143048,-1.58492243083139,-2.09934797917952,-1.53664158584688,0.0983443095608273,0.40329653524593,0.40329653524593,0.62135825504654,0.326152192739818,0.326152192739818,0.0793410215058119,0.40329653524593,0.772477461164786,0.62135825504654,0.62135825504654,0.479929038227762,0.324530811299294,0.40329653524593,0.40329653524593,0.483935870594751,0.483935870594751,0.0793410215058119,0.772477461164786,0.250152419813622,0.483935870594751,0.772477461164786,0.0793410215058119,0.772477461164786,0.772477461164786,0.40329653524593,0.772477461164786,0.62135825504654,0.62135825504654,0.326152192739818,0.62135825504654,0.40329653524593,0.40329653524593,0.131182427140628,0.131182427140628,0.026397018528512,0.0565033791342121,0.0565033791342121,0.933064041812922,0.933064041812922,0.933064041812922,-2.68668082330986,-1.5383032618041,-1.64423151158371,-1.64423151158371,-0.871328285258864,-1.01992480465419,-0.829621608194219,-2.77321678275158,0.0955189028359297,0.119028457881545,0.487258935875499,0.487258935875499,0.242289148713812,-0.048793590204564,0.0748443065940816,-0.156326199173829,0.0602932074967795,-0.114129825997594,0.0602932074967795,0.148096639374714,0.798956040665419,0.295397349267566,-0.866427979440054,-0.118739543799222,0.614078640683993,0.0975511225196224,-0.00181702969674347,0.226519573168133,0.226519573168133,0.226519573168133,0.454939135969941,0.737441661039282,0.737441661039282,0.925082250423556,0.539290124156912,0.853725246638962,0.236965564720115,0.864264733076905,0.852932896967537,0.427232375529577,0.636065755730622,0.636065755730622,0.636065755730622,0.864264733076905,0.188094163755889,-0.251346658498742,-0.105032182575255,-0.272357511022543,0.250984483703205,0.250984483703205,-2.68668082330986,-1.17707455535729,-1.64535660241086,-1.0625032912538,-0.0162312974334123,-0.263405006856748,-0.114193172664188,-0.584677266557596,0.162345501721467,0.0266071597433721,0.0299968478006512,0.251228972659012,0.251228972659012,0.51287188520532,0.51287188520532,0.422440112217552,0.450967893730861,0.422440112217552,0.195359386263508,0.0596263648293826,0.631656486357717,0.307140849632192,0.307140849632192,0.2258814942221,0.354733545114784,0.172960835820911,-0.306109914998232,-0.118653248710699,-0.118739543799222,0.168266994259485,-0.360217126526925,0.154201530278336,0.614078640683993,0.402298768989416,0.402298768989416,0.402298768989416,1.07296726094758,1.07296726094758,0.514258135414256,0.514258135414256,0.829580034112887,0.790319646525821,1.00772827025793,0.837037486150543,1.00772827025793,0.790319646525821,0.683097761585174,0.683097761585174,1.07296726094758,1.07296726094758,-2.68668082330986,-0.211514455138933,-0.122655845924637,-0.871778744608851,-1.53865673033987,-1.59811443381757,-1.12009432273564,-0.847059314642249,-0.607717248645009,-0.132263591640075,-0.607717248645009,-0.965148800801695,-0.353329942473926,-0.167932699757357,0.331630813788922,0.331630813788922,-0.167932699757357,0.0677953198254285,-0.111671336802066,0.154065244530485,0.195346113143885,0.238173622203792,-0.116990848782247,-0.0933932183942357,0.255478771470491,0.0822222571567167,-0.708302820418376,0.667181979419748,0.699103266044478,0.699103266044478,0.699103266044478,0.720149637216922,0.579395291962644,0.720149637216922,0.305926530873289,0.305926530873289,0.720149637216922,0.720149637216922,0.720149637216922,0.720149637216922,0.533351642254216,0.533351642254216,0.525104021740162,0.782529678320152,0.782529678320152,0.782529678320152,0.782529678320152,0.699103266044478,0.623480474625943,0.623480474625943,-2.68668082330986,0.176881432978817,0.651367221626464,0.20601732187798,0.967214137208,0.967214137208,0.308212670093965,0.967214137208,0.967214137208,0.618304776204317,0.651367221626464,0.651367221626464,0.651367221626464,0.651367221626464,0.651367221626464,0.651367221626464,-0.117695808510801,0.618304776204317,0.738690878111702,0.738690878111702,0.2258814942221,0.631656486357717,0.210636468890325,0.631656486357717,0.665345296144487,0.210636468890325,0.210636468890325,0.389327494886947,0.665345296144487,0.665345296144487,0.476591976721065,0.476591976721065,0.389327494886947,0.461501063088659,0.581589413677707,0.374596057439614,0.374596057439614,1.21781310978975,1.21781310978975,0.374596057439614,0.915405623368065,0.915405623368065,1.21781310978975,0.915405623368065,0.915405623368065,0.915405623368065,0.915405623368065,0.915405623368065,0.915405623368065,1.13306894173426),.Dim=c(15,50)),N=50,P=15) #These are 2 sets of initial values required by the MCMC sampler to run 2 chains simultaneously Inits list(Y=structure(.Data=c(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),.Dim=c(15,50,2)),isigma=c(1,1,1,1,1,1,1,1,1,1,1,1,1,1,1),itau=c(1,1,1,1,1,1,1,1,1,1,1,1,1,1,1),beta=c(1,1,1,1,1,1,1,1,1,1,1,1,1,1,1),beta.m=1,ibeta.v=1) list(Y=structure(.Data=c(1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1),.Dim=c(15,50,2)),isigma=c(.1,.1,.1,.1,.1,.1,.1,.1,.1,.1,.1,.1,.1,.1,.1),itau=c(.1,.1,.1,.1,.1,.1,.1,.1,.1,.1,.1,.1,.1,.1,.1),beta=c(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),beta.m=1,ibeta.v=1)