This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*********************************************************************************************/ | |
/* */ | |
/* This macro finds a letters display for all pairwise comparisons */ | |
/* using the insert-and-absorb algorithm with sweeping */ | |
/* It uses output generated from the MIXED, GLIMMIX or GENMOD procedures */ | |
/* */ | |
/* The method is based on */ | |
/* */ | |
/* Piepho, H.P. (2004): An algorithm for a letter-based representation of all-pairwise */ | |
/* comparisons. Journal of Computational and Graphical Statistics 13, 456-466. */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*==============================================================================================================*/ | |
/* ROUTINE NAME: Mulamba_and_Mock_(1978)_in_SAS.SAS | |
/* DESCRIPTION: This routine performs Mulamba and Mock (1978) to a multivariate dataset | |
aiming to select genotypes | |
/* OBS: ___. | |
/* AUTHOR: Alysson Jalles da Silva EMAIL: [email protected] | |
/* LICENCE: MIT | |
/* VERSION: 1.0 28/10/2014 - Pilot Project | |
2.0 16/05/2015 - Sum of Mulamba and Mock index automatic | |
/*==============================================================================================================*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#This is a test file of R Software | |
a<-"this is a String" | |
b<-c(1, 2, 3) | |
#Example of Alysson Jalles |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*This is a test file of SAS Software*/ | |
data NOVO; | |
input var1 var2; | |
cards; | |
1 2 | |
1 3 | |
1 4 | |
2 1 | |
2 3 | |
2 5 |