- 128
- 31 257
ImIqbalStat
India
Приєднався 2 гру 2023
Welcome to my channel , your gateway to the world of data analysis using R Studio and other statistical packages, where we explore the realms of forestry and agriculture. Dive into the heart of datasets, as we uncover the insights within forests and farmlands alike. Immerse yourself in the intersection of data and nature, discovering the stories told by statistical analysis and visualizations. Whether you're a data enthusiast, forestry professional, or agriculture aficionado, Imstat is your companion on the journey through data-driven exploration. Subscribe for engaging tutorials, real-world applications, and a holistic view of the data-rich landscapes in forestry and agriculture. Let's cultivate knowledge together! 🌳🌾📊
Computing Tree Above-ground Biomass library(BIOMASS) in #rstudio #HDmodel #Tree #Height #diameter
This package provides functions to estimate aboveground biomass (AGB) and carbon, along with their uncertainties, in tropical forests.
cran.r-project.org/web/packages/BIOMASS/index.html
Key features include:
Taxonomy retrieval and correction.
Estimation of wood density and its uncertainty.
Construction of height-diameter models.
Management of tree and plot coordinates.
Stand-level AGB/carbon estimation with uncertainty quantification
Estimating Aboveground Biomass through library BIOMASS
#Recall library
library(BIOMASS)
let us start
# Create variables
D= 10:99
#Diameter values ranging from 10 to 99
WD = runif(length(D), min = 0.1, max = 1)
#Random values for wood density (WD) between 0.1 and 1
H =D^(2 / 3)
#Heights calculated using formula H=(D)^2/3
Let us compute now
# If you have height data
AGB= computeAGB(D, WD, H)
# If you do not have height data and a single site
lat =4.08
long =52.68
coord= c(long, lat)
AGB= computeAGB(D, WD, coord = coord)
# If you do not have height data and several sites (here three)
lat =c(rep(4.08, 30), rep(3.98, 30), rep(4.12, 30))
long =c(rep(-52.68, 30), rep(-53.12, 30), rep(-53.29, 30))
coord = cbind(long, lat)
AGB = computeAGB(D, WD, coord = coord)
cran.r-project.org/web/packages/BIOMASS/index.html
Key features include:
Taxonomy retrieval and correction.
Estimation of wood density and its uncertainty.
Construction of height-diameter models.
Management of tree and plot coordinates.
Stand-level AGB/carbon estimation with uncertainty quantification
Estimating Aboveground Biomass through library BIOMASS
#Recall library
library(BIOMASS)
let us start
# Create variables
D= 10:99
#Diameter values ranging from 10 to 99
WD = runif(length(D), min = 0.1, max = 1)
#Random values for wood density (WD) between 0.1 and 1
H =D^(2 / 3)
#Heights calculated using formula H=(D)^2/3
Let us compute now
# If you have height data
AGB= computeAGB(D, WD, H)
# If you do not have height data and a single site
lat =4.08
long =52.68
coord= c(long, lat)
AGB= computeAGB(D, WD, coord = coord)
# If you do not have height data and several sites (here three)
lat =c(rep(4.08, 30), rep(3.98, 30), rep(4.12, 30))
long =c(rep(-52.68, 30), rep(-53.12, 30), rep(-53.29, 30))
coord = cbind(long, lat)
AGB = computeAGB(D, WD, coord = coord)
Переглядів: 171
Відео
Radargraph in library(AgroR) for RCBD (Multiple comparison Tests) : #LSD #DMRT #SK #TukeyHSD
Переглядів 2322 місяці тому
Selecting the right statistical test is crucial for drawing valid and reliable conclusions. Each test - LSD, Duncan’s, Scott-Knott, and Tukey’s HSD - offers unique advantages: LSD: Best for quick comparisons in smaller experiments. Duncan’s Test: Suitable for ranking multiple treatments while managing error rates. Scott-Knott: Effective for grouping treatments in complex datasets. Tukey’s HSD: ...
Imneuron : AI Powered Neural Network Solutions for Regression Tasks #rstudio #neuralnetworks
Переглядів 6744 місяці тому
This package provides a versatile tool for creating and evaluating AI-based neural network models for regression analysis on datasets with continuous target variables. It allows users to experiment with hidden neuron configurations across two layers, optimizing performance through "5-fold" or "10-fold" cross-validation. Input data is normalized for efficient training, and model accuracy is asse...
Analysis of Experimental Designs in R Studio #CRD #RCBD #LSD #FactorialRCBD
Переглядів 1,5 тис.6 місяців тому
Analysis of Experimental Designs in R Studio #CRD #RCBD #LSD #FactorialRCBD
Dot and whisker plot for regression analysis : R studio
Переглядів 2976 місяців тому
Dot and whisker plot for regression analysis : R studio
Fitting of Linear Equation Through Excel Solver Add in
Переглядів 1097 місяців тому
Fitting of Linear Equation Through Excel Solver Add in
Split Plot Design : An experiment within an experiment……………
Переглядів 1,1 тис.8 місяців тому
Split Plot Design : An experiment within an experiment……………
Factorial Experiments #statistics #anova #datascience #dataanalytics
Переглядів 1648 місяців тому
Factorial Experiments #statistics #anova #datascience #dataanalytics
Latin Square Design #statistics #anova #data #ftest #datascience #dataanalytics
Переглядів 2639 місяців тому
Latin Square Design #statistics #anova #data #ftest #datascience #dataanalytics
Randomized Complete Block Design #RCBD #anova #statistics #datascience #dataanalytics
Переглядів 3929 місяців тому
Randomized Complete Block Design #RCBD #anova #statistics #datascience #dataanalytics
Completely Randomized Design #ANOVA #data #statistics #datascience
Переглядів 2999 місяців тому
Completely Randomized Design #ANOVA #data #statistics #datascience
Principles of Experimental Designs #data #statistics #anova #replication #randomization #blocking
Переглядів 2419 місяців тому
Principles of Experimental Designs #data #statistics #anova #replication #randomization #blocking
Analysis of Variance #anova #Ftest #statistics #data #datascience #dataanalytics #ttest
Переглядів 2529 місяців тому
Analysis of Variance #anova #Ftest #statistics #data #datascience #dataanalytics #ttest
Regression Analysis #slope #data #statistics #coefficient #regressionanalysis
Переглядів 3079 місяців тому
Regression Analysis #slope #data #statistics #coefficient #regressionanalysis
Correlation analysis #pearson #Ttest #correlation #data #statistics #datascience
Переглядів 2029 місяців тому
Correlation analysis #pearson #Ttest #correlation #data #statistics #datascience
Test of significance #ttest #Ftest #chisquaretest #statistics #data #datascience
Переглядів 3399 місяців тому
Test of significance #ttest #Ftest #chisquaretest #statistics #data #datascience
Testing of Hypothesis #nullhypothesis #Error #statistics #datascience
Переглядів 2729 місяців тому
Testing of Hypothesis #nullhypothesis #Error #statistics #datascience
Probability distributions #statistics #normaldistribution #binomial_distribution #data
Переглядів 4049 місяців тому
Probability distributions #statistics #normaldistribution #binomial_distribution #data
Basic concepts of Probability #statistics #data #datascience #probability
Переглядів 4579 місяців тому
Basic concepts of Probability #statistics #data #datascience #probability
Basic Concepts in Statistics #statistics #average #mean #standarddeviation #data #dataanalytics
Переглядів 9409 місяців тому
Basic Concepts in Statistics #statistics #average #mean #standarddeviation #data #dataanalytics
Fitting of Artificial Intelligence based Neural Network Algorithm in JASP #neuralnetworks #data
Переглядів 3119 місяців тому
Fitting of Artificial Intelligence based Neural Network Algorithm in JASP #neuralnetworks #data
Forward Selection & Backward Elimination in JASP #datascience #regressionanalysis #statistics
Переглядів 2769 місяців тому
Forward Selection & Backward Elimination in JASP #datascience #regressionanalysis #statistics
In-Depth RCBD Data Analysis with R Studio's agricolae, doebioresearch and AgroR Libraries #rstudio
Переглядів 7339 місяців тому
In-Depth RCBD Data Analysis with R Studio's agricolae, doebioresearch and AgroR Libraries #rstudio
Correlation and Regression in JASP #data #statistics #regressionanalysis #correlation
Переглядів 1039 місяців тому
Correlation and Regression in JASP #data #statistics #regressionanalysis #correlation
Factorial CRD in JASP #data #anova #JASP #statistics
Переглядів 1259 місяців тому
Factorial CRD in JASP #data #anova #JASP #statistics
How to create ANOVA table of Completely randomized design #data #statistics #anova
Переглядів 519 місяців тому
How to create ANOVA table of Completely randomized design #data #statistics #anova
Analysis of Variance in JASP (Jeffreys’s Amazing Statistics Program) #data #anova #statistics
Переглядів 1659 місяців тому
Analysis of Variance in JASP (Jeffreys’s Amazing Statistics Program) #data #anova #statistics
Descriptive Statistics & Test of Significance in SPSS #data #spss #statistics #dataanalytics
Переглядів 12110 місяців тому
Descriptive Statistics & Test of Significance in SPSS #data #spss #statistics #dataanalytics
Cluster Analysis in R Studio (library factoextra) #rstudio #data #datascience #machinelearning
Переглядів 38910 місяців тому
Cluster Analysis in R Studio (library factoextra) #rstudio #data #datascience #machinelearning
Thank u sir
I'm glad I found this
❤❤
Nice lecture
❤❤❤❤
❤❤❤
❤❤
❤❤
❤❤❤
❤❤
🎉🎉
❤️🩹❤️🩹
❤❤❤
❤❤❤
❤❤
Very nice 👍
Very informative video thanks you sir❤
Most welcome
Stat is ❤
Keep doing good work. Informative
God bless you
❤❤❤
How about if you need checks, location , season in SOV
Sure , will make a video
good job
hi~ I can't make a graph What causes it?
Please elaborate your question, I mean which graph
❤
❤❤
❤❤
❤
💗
Near 1k
Good work, sir.
Thank you sir for sharing such valuable insights!
At last I got this one "Your analysis is not valid, suggests using a non-parametric test and try to transform the data " what should i do?
Use transformation in your data
If again assumption are violated, then use non parametric instead of parametric method
@Iqbalstat okay, will try. Thanks
VERY HELPFUL.THANK U SIR
🔥
When i am running the code it shows object biomass not found?
Try to attach your data
After Saving the plot all the text appears very small and how can we fix the size of the mean point ? Please anyone help me
Please specify it there are various options for saving . Just click on zoom in R studio then copy the plot
❤❤
Much needed info.
Thanks
Thank you so much, very clear and informative
Thanks
Please share your mail id having some query
Great tutors
Thank you so much. Highly useful to me. How can I export the results in txt file format?
Will make a separate video for that
Thanks for the video... Can you share the dataset used in this video
ua-cam.com/video/qBLToYtwADw/v-deo.htmlsi=b8NnzrjPWNJeFq8f U can use this data
@@Iqbalstatthanks for this .... But am interested in the dataset with the multiple variables. I mean the RCBD dataset
Very nice video sir
Thanku sir .
Interesting..
Informative
Thank you so much
You're most welcome