Skip to content

Instantly share code, notes, and snippets.

View AlyssonJalles's full-sized avatar

Alysson Jalles AlyssonJalles

View GitHub Profile
/*********************************************************************************************/
/* */
/* 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. */
/*==============================================================================================================*/
/* 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: Jalles10@gmail.com
/* LICENCE: MIT
/* VERSION: 1.0 28/10/2014 - Pilot Project
2.0 16/05/2015 - Sum of Mulamba and Mock index automatic
/*==============================================================================================================*/
#This is a test file of R Software
a<-"this is a String"
b<-c(1, 2, 3)
#Example of Alysson Jalles
@AlyssonJalles
AlyssonJalles / Example_StackOverFlow2.SAS
Last active August 29, 2015 14:16
This file is just a test
/*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