<div dir="ltr"><div>Hi Samuel,<br><br></div><div>The tab function simply gives back a matrix of allele counts (for a genlight object). It won't replace the values IN the genlight object (since R is side-effect free). <br><br></div><div>Because of the way a genlight object works, you can't replace the values with the average counts of alleles, so what you might want to do is to use `tab()` to get the allele matrix with missing replaced with the mean value and then use `celing()` on that matrix to transform the average values to the nearest allele copy number (note: you could also use `round()`, but this will always round to the nearest even digit). From there, you can convert back to a genlight with the missing values replaced. <br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Mar 4, 2019 at 11:00 AM <<a href="mailto:adegenet-forum-request@lists.r-forge.r-project.org">adegenet-forum-request@lists.r-forge.r-project.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Send adegenet-forum mailing list submissions to<br>
        <a href="mailto:adegenet-forum@lists.r-forge.r-project.org" target="_blank">adegenet-forum@lists.r-forge.r-project.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="https://lists.r-forge.r-project.org/cgi-bin/mailman/listinfo/adegenet-forum" rel="noreferrer" target="_blank">https://lists.r-forge.r-project.org/cgi-bin/mailman/listinfo/adegenet-forum</a><br>
<br>
or, via email, send a message with subject or body 'help' to<br>
        <a href="mailto:adegenet-forum-request@lists.r-forge.r-project.org" target="_blank">adegenet-forum-request@lists.r-forge.r-project.org</a><br>
<br>
You can reach the person managing the list at<br>
        <a href="mailto:adegenet-forum-owner@lists.r-forge.r-project.org" target="_blank">adegenet-forum-owner@lists.r-forge.r-project.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than "Re: Contents of adegenet-forum digest..."<br>
<br>
<br>
Today's Topics:<br>
<br>
   1. Replacing NAs in genlight object (Samuel Weaver)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Sun, 3 Mar 2019 12:53:16 -0600<br>
From: Samuel Weaver <<a href="mailto:weave271@umn.edu" target="_blank">weave271@umn.edu</a>><br>
To: <a href="mailto:adegenet-forum@lists.r-forge.r-project.org" target="_blank">adegenet-forum@lists.r-forge.r-project.org</a><br>
Subject: [adegenet-forum] Replacing NAs in genlight object<br>
Message-ID:<br>
        <CAAeinLC0PVGsy7wrXdSrJLv7wDogqdiXvF+8FH3SPC=<a href="mailto:enha-qA@mail.gmail.com" target="_blank">enha-qA@mail.gmail.com</a>><br>
Content-Type: text/plain; charset="utf-8"<br>
<br>
I'm trying to change NAs in my dataset to the mean allele frequency to run<br>
various PopGen analyses through adegenet, but have been having trouble.<br>
Commands start below.<br>
<br>
Data<-vcfR2genlight(MyVcf)<br>
Data<br>
/// GENLIGHT OBJECT /////////<br>
<br>
 // 11 genotypes,  5,467 binary SNPs, size: 877.8 Kb<br>
 7647 (12.72 %) missing data<br>
<br>
 // Basic content<br>
   @gen: list of 11 SNPbin<br>
<br>
 // Optional content<br>
   @ind.names:  11 individual labels<br>
   @loc.names:  5467 locus labels<br>
   @chromosome: factor storing chromosomes of the SNPs<br>
   @position: integer storing positions of the SNPs<br>
   @other: a list containing: elements without names<br>
<br>
I then try to run the command listed in the tutorial and elsewhere on the<br>
forum, which is as follows:<br>
<br>
tab(Data, NA.method="mean").<br>
<br>
This, however, does nothing to replace the NA values in the original "Data"<br>
genlight object. I've looked for hours on how to do this with no avail, so<br>
any help would be greatly appreciated.<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <<a href="http://lists.r-forge.r-project.org/pipermail/adegenet-forum/attachments/20190303/cabd61d5/attachment-0001.html" rel="noreferrer" target="_blank">http://lists.r-forge.r-project.org/pipermail/adegenet-forum/attachments/20190303/cabd61d5/attachment-0001.html</a>><br>
<br>
------------------------------<br>
<br>
Subject: Digest Footer<br>
<br>
_______________________________________________<br>
adegenet-forum mailing list<br>
<a href="mailto:adegenet-forum@lists.r-forge.r-project.org" target="_blank">adegenet-forum@lists.r-forge.r-project.org</a><br>
<a href="https://lists.r-forge.r-project.org/cgi-bin/mailman/listinfo/adegenet-forum" rel="noreferrer" target="_blank">https://lists.r-forge.r-project.org/cgi-bin/mailman/listinfo/adegenet-forum</a><br>
<br>
------------------------------<br>
<br>
End of adegenet-forum Digest, Vol 126, Issue 1<br>
**********************************************<br>
</blockquote></div>