Animal Sciences
Animal Sciences
  • Видео 66
  • Просмотров 452 354
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 statis...
Просмотров: 1 438

Видео

Correlation Coefficient in R | Pearson Correlation | Spearman Correlation | Kendall Correlation
Просмотров 1,1 тыс.Год назад
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
Просмотров 583Год назад
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
Просмотров 487Год назад
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 тыс.Год назад
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
Просмотров 1,9 тыс.Год назад
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
Просмотров 2 тыс.Год назад
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
Просмотров 3,4 тыс.Год назад
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 тыс.Год назад
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
Просмотров 3,3 тыс.Год назад
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
Просмотров 14 тыс.Год назад
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
Просмотров 794Год назад
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
Просмотров 4,2 тыс.Год назад
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
Просмотров 5 тыс.Год назад
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
Просмотров 801Год назад
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,4 тыс.Год назад
Six Data Types Used in R | R Programming for Beginners
Creating Objects and Variables in R | RStodio for Beginners
Просмотров 2,5 тыс.Год назад
Creating Objects and Variables in R | RStodio for Beginners
Basic Math Calculations in R | RStudio as a Super Fast Calculator
Просмотров 2,1 тыс.Год назад
Basic Math Calculations in R | RStudio as a Super Fast Calculator
Causes of Genetic Correlation Between Traits | Pleiotropy | Linkage
Просмотров 1,6 тыс.Год назад
Causes of Genetic Correlation Between Traits | Pleiotropy | Linkage
What is Estimated Breeding Value | EBV | What is Transmitting Ability in Animal Breeding
Просмотров 4 тыс.Год назад
What is Estimated Breeding Value | EBV | What is Transmitting Ability in Animal Breeding
Genetic Correlation in Animal Breeding | Phenotypic Correlation | Environmental Correlation
Просмотров 4,2 тыс.Год назад
Genetic Correlation in Animal Breeding | Phenotypic Correlation | Environmental Correlation
What is a Genetic Parameter | Genetic Parameters in Animal Breeding
Просмотров 2,7 тыс.Год назад
What is a Genetic Parameter | Genetic Parameters in Animal Breeding
10 Best Books for Animal Breeding and Genetics Students
Просмотров 1,7 тыс.Год назад
10 Best Books for Animal Breeding and Genetics Students
Repeatability | Concepts of Repeatability
Просмотров 4,4 тыс.Год назад
Repeatability | Concepts of Repeatability
13 Most Useful R Packages for Biologists, Animal Scientists and Agriculturists
Просмотров 1,9 тыс.Год назад
13 Most Useful R Packages for Biologists, Animal Scientists and Agriculturists
How to Create a Project in RStudio
Просмотров 15 тыс.Год назад
How to Create a Project in RStudio
How to Load Tab Delimited txt file in R and RStudio | Reading .txt File in R
Просмотров 2,8 тыс.Год назад
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
Просмотров 9 тыс.Год назад
How to Change Working Directory in R and RStudio
How to Read a csv File in R | Loading a csv File in R
Просмотров 13 тыс.Год назад
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
Просмотров 2,5 тыс.Год назад
The Easiest way to Learn R Programming | Swirl Package | Learn R in R

Комментарии

  • @user-mn9cz9bl7v
    @user-mn9cz9bl7v 12 дней назад

    thank you sir

  • @ritisnatanayak2
    @ritisnatanayak2 14 дней назад

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

    • @AnimalSciences
      @AnimalSciences 11 дней назад

      Thanks, I will try to cover this topic in future

  • @FarhanKhan-cf4xt
    @FarhanKhan-cf4xt 15 дней назад

    ❤❤

  • @Vet_Dr_Hamza_Jawad
    @Vet_Dr_Hamza_Jawad 19 дней назад

    Thanks!

  • @ingaseidova2120
    @ingaseidova2120 22 дня назад

    thank you

  • @luiscarlosscb7612
    @luiscarlosscb7612 Месяц назад

    Thanks

  • @sadunipiyumika1256
    @sadunipiyumika1256 Месяц назад

    ❤ thanks

  • @hardik.sharma1
    @hardik.sharma1 2 месяца назад

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

    • @AnimalSciences
      @AnimalSciences 2 месяца назад

      Can you highlight any wrong information? Thanks!

    • @hardik.sharma1
      @hardik.sharma1 Месяц назад

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

    • @AnimalSciences
      @AnimalSciences Месяц назад

      @@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 2 месяца назад

    Thank you ❤

  • @smofficialeducation
    @smofficialeducation 2 месяца назад

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

  • @harekrishna5834
    @harekrishna5834 2 месяца назад

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

  • @harekrishna5834
    @harekrishna5834 2 месяца назад

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

  • @harekrishna5834
    @harekrishna5834 2 месяца назад

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

  • @emmanuelarnhold1035
    @emmanuelarnhold1035 3 месяца назад

    look easyanova package

  • @mayday2211
    @mayday2211 3 месяца назад

    Thank you!!

  • @1realtruthrightnow742
    @1realtruthrightnow742 3 месяца назад

    what is R used for?

    • @AnimalSciences
      @AnimalSciences 3 месяца назад

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

    • @1realtruthrightnow742
      @1realtruthrightnow742 3 месяца назад

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

    • @AnimalSciences
      @AnimalSciences 3 месяца назад

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

  • @basmahf172
    @basmahf172 3 месяца назад

    How to open file if not available

    • @AnimalSciences
      @AnimalSciences 3 месяца назад

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

  • @jeanclarissepenado2516
    @jeanclarissepenado2516 3 месяца назад

    Thank you, Sir!!!

  • @pspk-edicts3498
    @pspk-edicts3498 3 месяца назад

    Excellent one bro❤

  • @Sanjaykumar-ov6sm
    @Sanjaykumar-ov6sm 3 месяца назад

    very nice video sir

  • @velkykopyto7021
    @velkykopyto7021 3 месяца назад

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

  • @kwangs5762
    @kwangs5762 4 месяца назад

    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 4 месяца назад

      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 4 месяца назад

  • @user-so3ys4kv8o
    @user-so3ys4kv8o 4 месяца назад

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

    • @AnimalSciences
      @AnimalSciences 4 месяца назад

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

  • @PAWSITIVE_BIOLOGY
    @PAWSITIVE_BIOLOGY 4 месяца назад

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

    • @AnimalSciences
      @AnimalSciences 4 месяца назад

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

    • @woodcouleecattle
      @woodcouleecattle 4 месяца назад

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

    • @PAWSITIVE_BIOLOGY
      @PAWSITIVE_BIOLOGY 4 месяца назад

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

  • @Vet_Dr_Hamza_Jawad
    @Vet_Dr_Hamza_Jawad 4 месяца назад

    Thanks, it was very helpful.

  • @gamerangel6587
    @gamerangel6587 4 месяца назад

    thank you sir..god bless you..

  • @smruti13
    @smruti13 4 месяца назад

    Ky only computer mai hi chalega mobile mai nhi ?

  • @ditynarayan8082
    @ditynarayan8082 4 месяца назад

    Thank you....

  • @gamerangel6587
    @gamerangel6587 4 месяца назад

    thank you sir..respect++++

  • @128m.elizabethranim.elizab2
    @128m.elizabethranim.elizab2 4 месяца назад

    Thank you so much bro ❤❤

  • @Vet_Dr_Hamza_Jawad
    @Vet_Dr_Hamza_Jawad 4 месяца назад

    Great video!

  • @SapanaKafle-jq4gi
    @SapanaKafle-jq4gi 4 месяца назад

    Thank you sir for sharing it . Plz send the link of genetics of livestock development JF Lasley if it access.

    • @AnimalSciences
      @AnimalSciences 4 месяца назад

      I think it's not freely available. You can purchase it from Amazon.

  • @eliasfisseha8554
    @eliasfisseha8554 4 месяца назад

    My brother thank you very much. I like your lecture . I have one question for you. Are these two options that are only available to enter data in to R or other more ? please show us all the options.

    • @AnimalSciences
      @AnimalSciences 4 месяца назад

      There are different ways to load data in R. If you have data in a CSV file then you can use these methods. If your data is in txt format then you can use the method explained in the following video: ruclips.net/video/58fR3gV6pcY/видео.html

    • @eliasfisseha8554
      @eliasfisseha8554 4 месяца назад

      @@AnimalSciences thank you brother I will be in touch with you All the best from Ethiopia.

    • @AnimalSciences
      @AnimalSciences 4 месяца назад

      @@eliasfisseha8554 You're welcome ❤️

  • @nicholasvithoulkas3322
    @nicholasvithoulkas3322 5 месяцев назад

    IVE BEEN trying to figure out this for over five hours. im in tears rn thank you so much

    • @AnimalSciences
      @AnimalSciences 5 месяцев назад

      Thank you 😊

    • @temamtv9830
      @temamtv9830 4 месяца назад

      Literally me I was reevaluating my whole existence!!

    • @AnimalSciences
      @AnimalSciences 4 месяца назад

      @@temamtv9830 Thank you

  • @star-tn7cs
    @star-tn7cs 5 месяцев назад

    This video helped me so so much in my class after sitting at my computer for an hour trying to figure it out , your video was a godsend! thank you

  • @abigailpalomino2995
    @abigailpalomino2995 5 месяцев назад

    you are a saint. thank you so much

  • @yagneshkantharia2409
    @yagneshkantharia2409 5 месяцев назад

    Your are Great mate . Thank you😊🙏

  • @user-df4to6zx7l
    @user-df4to6zx7l 6 месяцев назад

  • @AnhQuocNguyen-jl1vi
    @AnhQuocNguyen-jl1vi 6 месяцев назад

    very good

  • @OhMyDaRk
    @OhMyDaRk 6 месяцев назад

    Hello, Do you have twitter, I would love to contact you! Thanks!

  • @divergent5521
    @divergent5521 6 месяцев назад

    Very good explanation thank you.

  • @user-mv3cd3vd3c
    @user-mv3cd3vd3c 6 месяцев назад

    Thank you so much😊😊

  • @mathaias1423
    @mathaias1423 7 месяцев назад

    Very helpful!

  • @sukantatripura1563
    @sukantatripura1563 7 месяцев назад

    Sir can u please share the pdf or ppt

    • @AnimalSciences
      @AnimalSciences 7 месяцев назад

      I don't have any documents right now but you can get help from the books of Animal Breeding like Genetics of Livestock Improvement by John F Lasely

    • @samwesley8958
      @samwesley8958 7 месяцев назад

      😅🎉​@@AnimalSciences

  • @salka7322
    @salka7322 7 месяцев назад

    Thank you soo much bro

  • @McJulius-hx2ft
    @McJulius-hx2ft 7 месяцев назад

    This just wow!, keep up the good work

  • @OrangeTiramisu
    @OrangeTiramisu 8 месяцев назад

    Thank you! Very straightforward and precise. 😁

  • @paveleduardogalindotorres115
    @paveleduardogalindotorres115 8 месяцев назад

    In the case, that one dam gives more than one offspring, would the weight be the average?

    • @AnimalSciences
      @AnimalSciences 8 месяцев назад

      Yes, it will be fine to take the average of all the offspring of a single dam.

  • @casiandsouza7031
    @casiandsouza7031 8 месяцев назад

    Too narrow a definition of domestication for me. I include all living things that can be cared for and exploited. The full spectrum is from laboratory microorganisms to human slaves/employees.