search for: base_family

Displaying 4 results from an estimated 4 matches for "base_family".

2016 Apr 09
1
Run script R
...")) {? dir.create ("graphs/pdfs")} pdf (output, width=5, height=3.5)gx = dev.off ()----------------------------------------------------------------------------------------------------------------------script( graph-style.R) : library(grid) theme_custom <- function (base_size = 10, base_family = "serif") {? theme_grey(base_size = base_size, base_family = base_family) %+replace%? ? theme(? ? ? line = ? ? ? ? ? ? ? element_line(colour = "black", size = 0.5, linetype = 1, lineend = "butt"),? ? ? rect = ? ? ? ? ? ? ? element_rect(fill = "white", colour...
2016 Jul 20
2
Fuente (Tahoma)
...ntación en ggloot2 y me está quedando bastante bonito! Pero, tengo es problema con las fuentes: Warning messages: ?>? 1: In grid.Call(L_textBounds, as.graphicsAnnot(x$label), ... : ?>? font family not found in Windows font database ?etc.? ?que proviene de > theme_minimal(base_size = 14, base_family = "Tahoma") + ?La verdad es que no quisiera renunciar a la Tahoma. ¿Tengo alguna forma de incluirla en el Win font db que menciona el R? ¿Es un problema del R o es externo? Otros soft que utilizo en mi máquina (incluyendo este correo, el Word, el Excel, etc) utilizan Tahoma sin problemas....
2012 Jun 05
0
ggplot2, grid graphics, x11(), windows(), and device fonts
...Distance, colour = PlateRow)) + geom_point(size= 3) + geom_line(size=1) + facet_grid(Substrate ~ Expression) + xlab("Time After Scratch (h)") + ylab("Net half-distance (um)") + opts(title='Repaired Raw 1205Lu Scratch Time Course') + theme_bw(base_size = 18, base_family = "") print(p2) The warnings are: There were 22 warnings (use warnings() to see them) > > warnings() Warning messages: 1: Removed 1 rows containing missing values (geom_point). 2: Removed 1 rows containing missing values (geom_path). 3: In grid.Call(L_textBounds, as.graphicsAnnot(x...
2005 Nov 04
0
TSC and Power Management Events on AMD Processors
...ed systems. (AMD recommends that the operating system should favor these time sources in a prioritized manner: HPET first, then ACPI PM Timer, then PIT.) The following pseudo-code shows one way of determining when to use TSC: use_AMD_TSC() { // returns TRUE if ok to use TSC if (CPUID.base_family < 0xf) { // TSC drift doesn''t exist on 7th Gen or less // However, OS still needs to consider effects // of P-state changes on TSC return TRUE; } else if (CPUID.AdvPowerMgmtInfo.TscInvariant) { // Invariant TSC on 8th...