သတ်မှတ်ထားသောသတ်မှတ်ချက်များနှင့်ကိုက်ညီသည့်စာရွက်တစ်ခုစီရှိအတန်းတစ်ခုစီကိုကူးယူရန် VBA တွင်အောက်ပါအထားအသိုကိုသုံးနိုင်သည်- Sub CopyToAnotherSheet() Dim LastRow As Long 'Find last used row in a Column A of Sheet1 With Worksheets(" Sheet1 ") LastRow = .Cells(.Rows.Count, " A ").End(xlUp).Row End With 'Find first row where values should be posted in Sheet2...
SAS တွင် PROC SGPLOT ကို အသုံးပြု၍ အုပ်စုများဆွဲရန် အောက်ပါနည်းလမ်းများကို သင်အသုံးပြုနိုင်ပါသည်။ နည်းလမ်း 1- အုပ်စုတစ်ခုစီကို သီးခြားဂရပ်များဖြင့် ဆွဲပါ။ /*create multiple plots that show histogram of points for each team*/ proc sgplot data =my_data; by team; histogram points; density points / type =kernel; run ; အဆိုပါထုတ်ပြန်ချက်...
အုပ်စုအလိုက် စံအမှားဘားများဖြင့် ပျမ်းမျှတန်ဖိုးများကို ဖန်တီးရန် SAS တွင် အောက်ပါ syntax ကို သင်အသုံးပြုနိုင်သည်- /*calculate mean and standard error of points for each team*/ proc sql ; create table groupPlot as select team, mean(points) as meanPoints, mean(points) - stderr (points) as lowStdPoints, mean(points) + stderr...