Animal Sciences
Animal Sciences
  • 66
  • 543 168
Simple Linear Regression in R Programming | Fitting Linear Model in R
This video is about simple linear regression in R. The simple linear regression model is used to predict the outcome of response variable or dependent variable on the basis of one explanatory variable or independent variable. lm () function is used to fit a linear model in R. The model can be saved with any object name. The values for intercept or alpha and beta or regression coefficient can be obtained by printing out the model.
The summary function can be used to get the summary of a linear regression model. With summary function, you can get values of minimum, maximum, first quantile of residuals. Similiary, standard errors of intercept and regression coefficient, p values and t statistic can also be obtained using the summary of model in r. It also gives values of coefficient of determination or r squared and adjusted r squared.
Rscript/codes used in this tutorial
drive.google.com/file/d/1ujWIRgR29vMAEPDdK1gVAuhKTK33aP8W/view?usp=sharing
To download Data used in this video
drive.google.com/file/d/1_XSF700DaL9r38hdHAVYzpBzKqrkb0Mm/view?usp=sharing
To learn basics of R Programming
th-cam.com/play/PL1ectsXIpOkd36uTl6PpoOOjbRhaqm7lE.html
#regression #linearmodel #rprogramming
มุมมอง: 1 877

วีดีโอ

Correlation Coefficient in R | Pearson Correlation | Spearman Correlation | Kendall Correlation
มุมมอง 1.3Kปีที่แล้ว
This video is about the calculation of correlation coefficient in R. Correlation is a statistical method that is used to find out the relationship between two variables. There are different methods to calculate correlation like Pearson Correlation, Spearman correlation and Kendall correlation. Pearson correlation is mostly used to compute the correlation coefficient. However, it depends on the ...
Use of tapply() Function in R | R Programming for Beginners
มุมมอง 743ปีที่แล้ว
This video is about tapply () function in R. You will learn how to use tapply function in rstudio. tapply function in R is used to apply a function to data separated by factors. If data contains factor and numeric variables, then we can use tapply function. You can also apply this function to multiple factor variables. Following is the syntax of tapply function: tapply(X, INDEX, FUN = NULL, ......
Use of apply Function in R | R for Beginners
มุมมอง 618ปีที่แล้ว
This video is about the apply function in R. You will learn how to use apply function in R. Apply function in R can be used to perform an action to multiple rows and columns. So, this function is very helpful in R Programming. To get help on the use of apply() function in R, insert a question mark to it like ?apply(). The documentation on the use of this function will open in the help tab. Foll...
Two Sample T Test in R | Independent T Test for Two Samples in R
มุมมอง 1.5Kปีที่แล้ว
This video is about t test for two samples in R also known as independent t test for two samples. T test in R can be performed using t.test function. T test for two samples is used to compare the means of two populations or two groups. We can use independent t test for two samples to check whether the mean of two populations is same or different. In first step of t test we define null and alter...
Exploring Data in R | Useful R Functions to Explore Data in RStudio
มุมมอง 2.3Kปีที่แล้ว
This tutorial provides some useful R functions to explore data. There are various functions for exploratory data analysis in R. Exploring data is the first step before analyzing it in R. read.csv function is used to load a csv file in R dim function is used to get the dimensions of data set head function in R is used to get observations in first 6 rows of data tail function in R is used to get ...
One Sample t Test in R | Understand P Values in t Test | Hypothesis Testing in R
มุมมอง 3.4Kปีที่แล้ว
This video is about Student’s t test for one sample in R. This test is used when you have observations only on one variable. To perform t test, first we set null hypothesis and alternative hypothesis. We also check any outliers in the data using a boxplot before running the analysis. Two examples are provided in this video. The explanation of p value and interpretation of results of t.test func...
How to Calculate Standard Error of Data in R | Create Function in R
มุมมอง 4.2Kปีที่แล้ว
This video is about the calculation of standard error in R program. In R software, there is no in build function to calculate standard error. So, the standard error in R can be calculated by creating a function in R. There are also some packages which have functions to calculate standard error. In this video, I have shown both ways to calculate standard error. The describe function within psych...
Calculating Descriptive Statistics of Data in R
มุมมอง 3.9Kปีที่แล้ว
This video is about how to calculate descriptive statistics in R program. I have shown the functions to calculate measures of central tendency like mean, median, harmonic mean, geometric mean and measures of dispersion like range, variance and standard deviation in R. Summary function gives information on the minimum value, 1st quantile, median, mean, 3rd quantile and maximum value in a column ...
Export Data to a Text .txt File From R | Tab Delimited Text | Space delimited Text
มุมมอง 4.2Kปีที่แล้ว
This video is about exporting data in .txt format from R. We often need to export data sets in the from text files from RStudio. So, this video explains how you can transfer data from R to tab delimited text and space delimited text files. First I have shown creating a data set and then those data sets were exported as tab delimited and space delimited text files from R. To export data as text,...
How to Export Data From R to a CSV File | Basics of R Programming
มุมมอง 19Kปีที่แล้ว
This tutorial is about exporting data from R to a CSV file. There are different ways to write a csv file in R. I have shown exporting data using write.csv function. In the first step, I have shown how to create a data set and then export it to a comma separated values file. To get help on the use of write.csv function, type a question mark before this function. As you run the code, the document...
How to Create Data Frames in R | How to Add a New Column to a Data
มุมมอง 1Kปีที่แล้ว
This video is about creating data frames in R. A data frame contains columns and rows and it is a two dimensional structure. First, we will create 4 objects. The first object is a character vector which contains the names of animals. The second object is a numeric vector which contains the numbers of animals, stored as animal_n. The 3rd object is names of fruits and the fourth object is the num...
Writing Scripts of Codes in R | R for Beginners
มุมมอง 7Kปีที่แล้ว
In this video, we will learn how to write and execute scripts of code in R. R script is a text file that can be used to store R commands and functions. To open the script file in rstudio, click on file, then new file and here click on R script. Alternatively, you can press CTRL Shift N from the keyboard to open R script file. So, Why do we need R script file? R script file can be used to save a...
How to Create Matrices and Perform matrix Operations in R
มุมมอง 9Kปีที่แล้ว
This video is about creating matrices and performing matrix operations in R programming. Matrix is a collection of elements of same data type which are arranged in rows and columns. A matrix has two dimensions which are rows and columns. For example, if a matrix has 3 rows and 2 columns, then the dimensions of this matrix are 3 x 2. In R, matrices can be created using the matrix() function. In ...
Performing Operation on Vectors and Objects in R
มุมมอง 1.1Kปีที่แล้ว
This video is about how you can perform different operations on vectors, variables and objects in R. We will see how we can compare two vectors using different operators in R, compare numbers to the values in vector, check if two vectors are equal to each other or not, compare vectors with more than one values, perform arithmetic operations like addition, multiplication, subtraction and divisio...
Six Data Types Used in R | R Programming for Beginners
มุมมอง 1.8Kปีที่แล้ว
Six Data Types Used in R | R Programming for Beginners
Creating Objects and Variables in R | RStodio for Beginners
มุมมอง 3.8Kปีที่แล้ว
Creating Objects and Variables in R | RStodio for Beginners
Basic Math Calculations in R | RStudio as a Super Fast Calculator
มุมมอง 3Kปีที่แล้ว
Basic Math Calculations in R | RStudio as a Super Fast Calculator
Causes of Genetic Correlation Between Traits | Pleiotropy | Linkage
มุมมอง 1.9Kปีที่แล้ว
Causes of Genetic Correlation Between Traits | Pleiotropy | Linkage
What is Estimated Breeding Value | EBV | What is Transmitting Ability in Animal Breeding
มุมมอง 5Kปีที่แล้ว
What is Estimated Breeding Value | EBV | What is Transmitting Ability in Animal Breeding
Genetic Correlation in Animal Breeding | Phenotypic Correlation | Environmental Correlation
มุมมอง 5Kปีที่แล้ว
Genetic Correlation in Animal Breeding | Phenotypic Correlation | Environmental Correlation
What is a Genetic Parameter | Genetic Parameters in Animal Breeding
มุมมอง 3.3Kปีที่แล้ว
What is a Genetic Parameter | Genetic Parameters in Animal Breeding
10 Best Books for Animal Breeding and Genetics Students
มุมมอง 2.1Kปีที่แล้ว
10 Best Books for Animal Breeding and Genetics Students
Repeatability | Concepts of Repeatability
มุมมอง 6Kปีที่แล้ว
Repeatability | Concepts of Repeatability
13 Most Useful R Packages for Biologists, Animal Scientists and Agriculturists
มุมมอง 2.1Kปีที่แล้ว
13 Most Useful R Packages for Biologists, Animal Scientists and Agriculturists
How to Create a Project in RStudio
มุมมอง 19Kปีที่แล้ว
How to Create a Project in RStudio
How to Load Tab Delimited txt file in R and RStudio | Reading .txt File in R
มุมมอง 3.4Kปีที่แล้ว
How to Load Tab Delimited txt file in R and RStudio | Reading .txt File in R
How to Change Working Directory in R and RStudio
มุมมอง 11K2 ปีที่แล้ว
How to Change Working Directory in R and RStudio
How to Read a csv File in R | Loading a csv File in R
มุมมอง 16K2 ปีที่แล้ว
How to Read a csv File in R | Loading a csv File in R
The Easiest way to Learn R Programming | Swirl Package | Learn R in R
มุมมอง 3.1K2 ปีที่แล้ว
The Easiest way to Learn R Programming | Swirl Package | Learn R in R

ความคิดเห็น

  • @TroyeHalder
    @TroyeHalder 8 วันที่ผ่านมา

    Thank you so much! It works nicely!

  • @Babar_liza
    @Babar_liza 15 วันที่ผ่านมา

    It shows unconfirmed 😮

    • @AnimalSciences
      @AnimalSciences 15 วันที่ผ่านมา

      Hi, can you explain what is unconfirmed?

  • @kishorkumarroy85
    @kishorkumarroy85 17 วันที่ผ่านมา

    Hello sir! Thank you for such a wonderful lecture. Sir, can you suggest some books where I can study more about heritability and use them as reference.

    • @AnimalSciences
      @AnimalSciences 17 วันที่ผ่านมา

      Hi @@kishorkumarroy85 , Here are 3 best books for reference: 1: Genetics of Livestock Improvement by John F Lasely 2: Understanding Animal Breeding by Richard M. Bourdon 3: Textbook Animal Breeding and Genetics For more details and links to download these books you can read the description of the following video: th-cam.com/video/S-umpwVjOTA/w-d-xo.html

    • @kishorkumarroy85
      @kishorkumarroy85 17 วันที่ผ่านมา

      @@AnimalSciences Thank you very much, sir.

  • @selena91-z7v
    @selena91-z7v 28 วันที่ผ่านมา

    How can I get the sequence of the target gene mcrA for ordering a synthetic standard DNA for absolute quantification of total methanogenic archaea, could you help me please?

    • @AnimalSciences
      @AnimalSciences 27 วันที่ผ่านมา

      Sorry, I have no idea about it

  • @Tomorrow_today-y5u
    @Tomorrow_today-y5u หลายเดือนก่อน

    Question: would you explain the detail expression of intraclass correlation?

    • @AnimalSciences
      @AnimalSciences หลายเดือนก่อน

      @@Tomorrow_today-y5u it is a statistical concept which describes how strongly individuals in the same group resemble each other. By using this method, we can estimate heritability. To better understand why this or other methods used to estimate heritability, please watch other videos on this channel about partitioning phenotypic variance and estimation of heritability part 1 to part 5 in a sequence. I hope your concepts will be cleared by watching the playlist. If you still have questions after watching these videos let me know.

  • @naptune2118
    @naptune2118 หลายเดือนก่อน

    Hello, can I install R software on a tablet?

    • @AnimalSciences
      @AnimalSciences หลายเดือนก่อน

      I'm afraid to say that you can't install R on iPad because it's only available for windows or Mac operating systems.

  • @KennyDay-s3i
    @KennyDay-s3i หลายเดือนก่อน

    Good videos. Why can broad sense heritability ONLY be calculated in twin data? I didn't follow this.

    • @AnimalSciences
      @AnimalSciences หลายเดือนก่อน

      Broad sense heritability is the proportion of phenotypic variance that is due to total genetic variance (H2 = vG/vP). vG (genetic variance) is caused by vA (Additive variance), vD (Dominance variance) and vI (Epistatic variance). Practically, it is impossible to calculate vD and vI. Therefore, narrow sense heritability (H2 = vA/vP) is most widely estimated. Broad sense heritability can only be calculated when we have data on monozygotic and dizygotic twins. As identical twins share 100% of genes with each other and dizygotic twins share 50% of genes with each other. So, scientists developed a formula to calculate broad sense heritability using twins data because they have common genotypes and environmental and genetic sources of variance can be easily partitioned from the total phenotypic variance. I hope this makes sense. If you want to understand this topic in depth please watch the full series of heritability. You can also watch the following video on partitioning of phenotypic variance th-cam.com/video/Guf8n14hGcA/w-d-xo.htmlsi=htfeGaPW3EzFqTJa

    • @KennyDay-s3i
      @KennyDay-s3i หลายเดือนก่อน

      @@AnimalSciences if you had narrow sense heritability for a trait AND you had broad sense heritability, should it be possible to use the additive variance as determined by narrow sense to "solve for" non-additive variance (ie Dominance + epistatic)? We had a paper a few years back (work of a graduate student) where we use broad sense heritability in a family study and used a mixed model that contained a kinship matrix as we knew relatedness of all individuals. I am questioning some of the assumptions...but I am really interested in how many MZ and DZ twins occur in mammalian populations, ie cattle? I am guessing narrow sense is mostly always used. Thanks again

    • @AnimalSciences
      @AnimalSciences หลายเดือนก่อน

      @@KennyDay-s3i The methods discussed in these videos are for undergrad students or someone who is new to Breeding and Genetics field to provide them with basic understanding of concepts of heritability and how it can be estimated with a few examples. Nowadays, we have highly advanced methods like REML, mixed models etc. and software (ASREML, WOMBAT etc.) to partition phenotypic variance into different components. You're right about broad sense heritability, it is almost impossible to estimate it and narrow sense heritability is most widely estimated in Genetic studies.

  • @Lostroad2ice_SD
    @Lostroad2ice_SD หลายเดือนก่อน

    Nice video

  • @cdwarden45
    @cdwarden45 2 หลายเดือนก่อน

    This is very helpful - thank you for posting!

  • @davidmbah89
    @davidmbah89 2 หลายเดือนก่อน

    Man, this video just saved me. Have been trying to figure out why I'm unable to pull a csv file since yesterday, until I watched this video and realized that I was in a wrong directory and needed to change working directory. Thanks man

    • @AnimalSciences
      @AnimalSciences 2 หลายเดือนก่อน

      Thanks, glad to know this video was helpful

  • @pushparajjoshi658
    @pushparajjoshi658 2 หลายเดือนก่อน

    Clear explanations, thank you sir ❤, best wishes from Nepal..

    • @AnimalSciences
      @AnimalSciences 2 หลายเดือนก่อน

      Thank you

    • @apexyathapamagar3763
      @apexyathapamagar3763 27 วันที่ผ่านมา

      ek mahina agadi nai poultry breeding padhna thaldeko 😮

  • @bethanyt2003
    @bethanyt2003 2 หลายเดือนก่อน

    Thank you so much! I can now do my assessment all thanks to you which is due today 😅. Couldn’t get it to run without errors thank you so so much !!

    • @AnimalSciences
      @AnimalSciences 2 หลายเดือนก่อน

      Thanks, good luck with your assessment.

  • @magickitten742
    @magickitten742 3 หลายเดือนก่อน

    You have just saved my night. I was so frustrated as I am new to R Studio and then I found your video here and it was great. Thank you so much.

  • @MichelleDiaz-f8n
    @MichelleDiaz-f8n 3 หลายเดือนก่อน

    Hi, I tried but all get like in just one single colonne, how I can make it to be in separates colonnes? according to the variables.

    • @AnimalSciences
      @AnimalSciences 3 หลายเดือนก่อน

      Hi, I think you mean column not colonne? Normally, when you export a data set in a CSV file it automatically assigns each variable to a separate column

    • @MichelleDiaz-f8n
      @MichelleDiaz-f8n 3 หลายเดือนก่อน

      @@AnimalSciences Oui, désolé!. I was expecting each variable in separate columns but that didn't happened, I don't know whether the problem is cause is a mac or what I could do? because for the moment all goes to one single column.

    • @AnimalSciences
      @AnimalSciences 3 หลายเดือนก่อน

      @@MichelleDiaz-f8n There might be a problem in your data set

  • @NathanYount
    @NathanYount 4 หลายเดือนก่อน

    On 360, they don't make that easy to find the old way like described here but is categorized under DATA. Click the Data Tab, Analysis Tools, click both check boxes since if you are enabling that you would want Solver and Analysis Toolpak.

  • @swethakemidi601
    @swethakemidi601 4 หลายเดือนก่อน

    Thank you 😊 sir

    • @AnimalSciences
      @AnimalSciences 4 หลายเดือนก่อน

      Glad you liked it

  • @ramtiwari7281
    @ramtiwari7281 4 หลายเดือนก่อน

    Still it is not showing

    • @AnimalSciences
      @AnimalSciences 4 หลายเดือนก่อน

      Close MS Word and then repeat the steps. Hope it will work

  • @NasasiiraIsaac
    @NasasiiraIsaac 4 หลายเดือนก่อน

    I think I will access other video

  • @fijiangel801
    @fijiangel801 4 หลายเดือนก่อน

    Chimpanzee ray 420 par

    • @AnimalSciences
      @AnimalSciences 4 หลายเดือนก่อน

      Couldn't understand. Can you elaborate?

  • @shodhankv3299
    @shodhankv3299 4 หลายเดือนก่อน

    Thanks for this vedio

    • @AnimalSciences
      @AnimalSciences 4 หลายเดือนก่อน

      Glad you liked it

  • @afromusiclovers5919
    @afromusiclovers5919 4 หลายเดือนก่อน

    🎉🎉🎉🎉🎉🎉

  • @Hami-m8z
    @Hami-m8z 5 หลายเดือนก่อน

    thank you sir

  • @ritisnatanayak2
    @ritisnatanayak2 5 หลายเดือนก่อน

    thank you so much sir,can u also teach us gblup

    • @AnimalSciences
      @AnimalSciences 5 หลายเดือนก่อน

      Thanks, I will try to cover this topic in future

  • @FarhanKhan-cf4xt
    @FarhanKhan-cf4xt 5 หลายเดือนก่อน

    ❤❤

  • @Vet_Dr_Hamza_Jawad
    @Vet_Dr_Hamza_Jawad 5 หลายเดือนก่อน

    Thanks!

    • @AnimalSciences
      @AnimalSciences 5 หลายเดือนก่อน

      Glad, you liked it

  • @ingaseidova2120
    @ingaseidova2120 5 หลายเดือนก่อน

    thank you

    • @AnimalSciences
      @AnimalSciences 5 หลายเดือนก่อน

      Glad, you liked it

  • @luiscarlosscb7612
    @luiscarlosscb7612 5 หลายเดือนก่อน

    Thanks

    • @AnimalSciences
      @AnimalSciences 5 หลายเดือนก่อน

      Glad, you liked it

  • @sadunipiyumika1256
    @sadunipiyumika1256 6 หลายเดือนก่อน

    ❤ thanks

    • @AnimalSciences
      @AnimalSciences 6 หลายเดือนก่อน

      Glad you liked it

  • @hardik.sharma1
    @hardik.sharma1 6 หลายเดือนก่อน

    Some of information is wrong.. please update information and concepts.

    • @AnimalSciences
      @AnimalSciences 6 หลายเดือนก่อน

      Can you highlight any wrong information? Thanks!

    • @hardik.sharma1
      @hardik.sharma1 6 หลายเดือนก่อน

      @@AnimalSciences 1. range of repeatability is 0 to 1. 2. Information on Grouping of repeatability as low, medium & high should be given

    • @AnimalSciences
      @AnimalSciences 6 หลายเดือนก่อน

      @@hardik.sharma1 Repeatability is the correlation between repeated records of a trait in a population and it can range from -1 to 1. However, it's very rare that you get negative value for Repeatability but still it's possible to get negative value of Repeatability. For better understanding of this topic I would recommend you to go through the Repeatability topic in 'Understanding Animal Breeding Book by Richard M. Bourdon'.

  • @JimjnrPrince
    @JimjnrPrince 6 หลายเดือนก่อน

    Thank you ❤

    • @AnimalSciences
      @AnimalSciences 6 หลายเดือนก่อน

      Glad you like it

  • @suhailmanzoorofficialeducation
    @suhailmanzoorofficialeducation 6 หลายเดือนก่อน

    ❤❤❤ @ 14 June 2024 (9:53 AM)

  • @harekrishna5834
    @harekrishna5834 7 หลายเดือนก่อน

    good explanation bro ....thank you i stuck in 1st point .....are u from ind ?????

    • @AnimalSciences
      @AnimalSciences 6 หลายเดือนก่อน

      Thanks, from Pakistan

  • @harekrishna5834
    @harekrishna5834 7 หลายเดือนก่อน

    good explanation bro ....thank you i stuck in 1st point from ......are u from ind ?????

  • @harekrishna5834
    @harekrishna5834 7 หลายเดือนก่อน

    good explanation bro ....thank you i stuck in 1st point from ......are u from ind ?????

    • @AnimalSciences
      @AnimalSciences 6 หลายเดือนก่อน

      Thanks, from Pakistan

  • @emmanuelarnhold1035
    @emmanuelarnhold1035 7 หลายเดือนก่อน

    look easyanova package

  • @mayday2211
    @mayday2211 8 หลายเดือนก่อน

    Thank you!!

    • @AnimalSciences
      @AnimalSciences 7 หลายเดือนก่อน

      Thanks, glad you liked it

  • @1realtruthrightnow742
    @1realtruthrightnow742 8 หลายเดือนก่อน

    what is R used for?

    • @AnimalSciences
      @AnimalSciences 8 หลายเดือนก่อน

      R is a programming language (software), that is used for statistical analysis and data visualization.

    • @1realtruthrightnow742
      @1realtruthrightnow742 8 หลายเดือนก่อน

      @@AnimalSciences Thank you for the reply Could R be used for Lotteries and or pattern recognition within lotteries?

    • @AnimalSciences
      @AnimalSciences 7 หลายเดือนก่อน

      @@1realtruthrightnow742 it can be... But you should be expert in statistics.

  • @basmahf172
    @basmahf172 8 หลายเดือนก่อน

    How to open file if not available

    • @AnimalSciences
      @AnimalSciences 8 หลายเดือนก่อน

      Couldn't understand what exactly you're asking. Can you elaborate it?

  • @jeanclarissepenado2516
    @jeanclarissepenado2516 8 หลายเดือนก่อน

    Thank you, Sir!!!

    • @AnimalSciences
      @AnimalSciences 8 หลายเดือนก่อน

      Glad you liked it

  • @pspk-edicts3498
    @pspk-edicts3498 8 หลายเดือนก่อน

    Excellent one bro❤

  • @Sanjaykumar-ov6sm
    @Sanjaykumar-ov6sm 8 หลายเดือนก่อน

    very nice video sir

  • @velkykopyto7021
    @velkykopyto7021 8 หลายเดือนก่อน

    omg thanks a lot I have been struggling for hours now and you showed me the path :)

  • @kwangs5762
    @kwangs5762 8 หลายเดือนก่อน

    The formula for estimation of broad sense heritability was H²=vG/vG why don't we use that instead of H²=2(r MZ. - r DZ) I don't get it

    • @AnimalSciences
      @AnimalSciences 8 หลายเดือนก่อน

      Heritability is the proportion of phenotypic variance that is due to genotypic variance. Mathematically, it can be expressed as vG/vP. So, this is how it is expressed but to actually calculate it you need to have calculated phenotypic and genetic variance first. To calculate phenotypic and genetic variance scientists have developed different methods which are explained in this video. It is also explained in this video why it is very difficult to calculate broad sense heritability. All of these methods are based on ways to calculate similarities or differences in living organisms. For example, correlation tells us the strength of relationship between two variables. So, correlation can be used to calculate heritability. I hope you got the point. If you want to fully understand these concepts then you can watch the videos series on heritability and methods to estimate heritability.

  • @Vet_Dr_Hamza_Jawad
    @Vet_Dr_Hamza_Jawad 8 หลายเดือนก่อน

    • @AnimalSciences
      @AnimalSciences 8 หลายเดือนก่อน

      Thank you ❤️

  • @LuizaTonietto
    @LuizaTonietto 8 หลายเดือนก่อน

    Do you have sources? So that I can go deeper?

    • @AnimalSciences
      @AnimalSciences 8 หลายเดือนก่อน

      You can get more details on this topic from the book Understanding Animal Breeding by Richard M. Bourdon

  • @PAWSITIVE_BIOLOGY
    @PAWSITIVE_BIOLOGY 8 หลายเดือนก่อน

    The way u say measured made me laugh so much This is better a comedy channel 😅

    • @AnimalSciences
      @AnimalSciences 8 หลายเดือนก่อน

      Although this isn't a comedy channel, I'm happy to know that I was able to make you laugh. Thank you 😊

    • @woodcouleecattle
      @woodcouleecattle 8 หลายเดือนก่อน

      ​@@AnimalSciences It's not meant to be a sad world I hope you are doing alright!!!

    • @PAWSITIVE_BIOLOGY
      @PAWSITIVE_BIOLOGY 8 หลายเดือนก่อน

      @@AnimalSciences hiiii sir just kidding 😂 Don't mind

  • @Vet_Dr_Hamza_Jawad
    @Vet_Dr_Hamza_Jawad 9 หลายเดือนก่อน

    Thanks, it was very helpful.

  • @gamerangel6587
    @gamerangel6587 9 หลายเดือนก่อน

    thank you sir..god bless you..

    • @AnimalSciences
      @AnimalSciences 9 หลายเดือนก่อน

      Thank you, glad you liked it

  • @smruti13
    @smruti13 9 หลายเดือนก่อน

    Ky only computer mai hi chalega mobile mai nhi ?

    • @AnimalSciences
      @AnimalSciences 9 หลายเดือนก่อน

      Yes, only for computer

  • @ditynarayan8082
    @ditynarayan8082 9 หลายเดือนก่อน

    Thank you....