သီးခြားကော်လံတစ်ခုရှိ ဗလာတန်ဖိုးရှိသော အတန်းများကို လျစ်လျူရှုထားချိန်တွင် Google Sheets တွင် အတန်းစီရန် အောက်ပါဖော်မြူလာကို အသုံးပြုနိုင်ပါသည်။ = QUERY ( A1:B11 , "select * where B is not null order by B" ) ဤအထူးဖော်မြူလာသည် အပိုင်းအခြား A1:B11 ရှိ အတန်းများကို ကော်လံ B ဖြင့် စီပေးသည်၊ ကော်လံ B တွင် အလွတ်တန်ဖိုးရှိသော မည်သည့်အတန်းကိုမဆို လျစ်လျူရှုထားသည်။...
Google Sheets query တစ်ခုလုပ်ဆောင်သောအခါတွင် သီးခြားကော်လံများရှိ ဆဲလ်အလွတ်များကို လျစ်လျူရှုရန် အောက်ပါနည်းလမ်းများကို အသုံးပြုနိုင်ပါသည်။ နည်းလမ်း 1- ကော်လံတစ်ခုရှိ အလွတ်ဆဲလ်များကို လျစ်လျူရှုပါ။ =QUERY( A1:C11 , "select * where B is not null" ) နည်းလမ်း 2- ကော်လံအများအပြားရှိ ဗလာဆဲလ်များကို လျစ်လျူရှုပါ။ =QUERY( A1:C11 , "select * where B is not null and...
Matplotlib ရှိ ကွက်ကွက်တစ်ခုသို့ ပျမ်းမျှစာကြောင်းတစ်ခုထည့်ရန် အောက်ပါအခြေခံအထားအသိုကိုသုံးနိုင်သည်။ import matplotlib. pyplot as plt import numpy as np #create scatterplot plt. scatter (df. x , df. y ) #add horizontal line at mean value of y plt. axhline (y=np. nanmean (df. y )) မျဉ်းကြောင်းတွင် အလျားလိုက်မျဉ်းတစ်ကြောင်းကို...