jQuery seleccione un botón de radio específico por valor

$("input[name=mygroup][value=" + value + "]").prop('checked', true);
Mingles444