similar to: font family 'symbol'

Displaying 20 results from an estimated 70000 matches similar to: "font family 'symbol'"

2011 Oct 26
1
set different font family for strings in mtext or text?
Hi there, Is it possible to set different font family for strings in mtext or text? For example, on windows platform with windows() device: plot(1:10, type = "n") text(5,5, "Chinese (English)") #Chinese for Chinese characters it will give the correct Chinese and English characters with two different font family, i.e., English character in default sans family, and Chinese
2006 Jun 30
1
Trellis.par.set/ family/ global change font?
Background: OS: Linux Ubuntu Dapper 6.06 release: R 2.3.1 editor: GNU Emacs 21.4.1 front-end: ESS 5.2.3 --------------------------------- Colleagues I have a rather complicated trellis plot that a journal editor has requested I edit and change all the fonts to times. I'd like to change all fonts globally for the plot, as in par(family="serif") for non-trellis plots. Various
2016 Jun 02
0
[RfC] Family dispersion
Hi, I'd like to hear your opinion about the following proposal to make the computation of dispersion in GLMs more flexible. Dispersion is used in summary.glm; the relevant code chunk with the dispersion calculation is listed below (from glm.R): summary.glm <- function(object, dispersion = NULL, correlation = FALSE, symbolic.cor = FALSE, ...) { est.disp <- FALSE df.r <-
2010 Dec 01
1
Font family not found in Windows font database
Dear R Gurus, I have a fairly simple problem, but I haven't been able to find the answer on 'the google' or in the r-help archives. I am generating plots on both Windows and OS X where I need to guarantee that the font used is Arial. In my plot command I specify 'fontfamily="Arial"'. The problem is that on Windows I'm getting the following warning: Warning
2009 Jun 18
1
win.metafile() and family
Hi all, I recently discovered how great win.metafile is for getting high resolution graphics into word. Having problems with specifying families though... #pdf works fine pdf("test.pdf",width=14,height=9) par(family="Helvetica") plot(1:10) text(4,4,"trial") dev.off() windows 2 #metafile doesnt like helvetica family
2004 Mar 17
2
R-1.8.1-4: Font family, ticks and mathematical expression??
Hi all, Could anyone help answer the following questions, please? (I'm using R-1.8.1-4 on Fedora Core 1 and very new to R) (i) Is it possible to specify a font family (e.g. courier or helvetica) when graphing? (ii) How can I make ticks point inwards on all four sides of a plot? Is it possible to have minor and major ticks? (iii) How would I specify a symbol "\sim" (i.e.
2009 Aug 16
2
Mix font families in a single label?
Dear R-help community: I have been searching for an elegant solution to the question posed in my subject. I would like to be able to use any of the R functions like text() or mtext() to display some text with mixed font families. For example, a label like "huge-class background load", where the word "huge" is in Courier and the rest is in the default family (or any other
2018 Jun 04
0
aic() component in GLM-family objects
>>>>> Ben Bolker >>>>> on Sun, 3 Jun 2018 17:33:18 -0400 writes: > Is it generally known/has it been previously discussed here that the > $aic() component in GLM-family objects (e.g. results of binomial(), > poisson(), etc.) does not as implemented actually return the AIC, but > rather -2*log-likelihood + 2*(model_has_scale_parameter)
2014 Dec 18
0
Aw: Re: Re: rsync not copy all information for font file
ls -la Source folder ----------------------------********---------------------------------- root at ---:/BKP_SC//FONT# ls -la totale 2808 drwxr-sr-x 1 nobody 65533 944 giu 30 2010 . drwxr-sr-x 1 nobody 65533 1440 mar 18 2014 .. -rw-r--r-- 1 nobody 65533 12292 apr 20 2012 :2eDS_Store drwxr-sr-x 1 nobody 65533 880 giu 30 2010 .AppleDouble -rw-r--r-- 1 nobody 65533 0 mar 5 2010
2008 Mar 06
1
Try to save as PDF: font family not found in PostScript font database
Hi I'm using 2.6.0 on Windows XP SP2. I realise I'm on an old version, please tell me if the problem is fixed in the newer versions. When I try and use the graphics window menu to save a graph as PDF, I get the following error, and no PDF produced Error: Invalid font type In addition: Warning messages: 1: font family not found in PostScript font database 2: font family not found in
2018 Jun 17
1
aic() component in GLM-family objects
FWIW p. 206 of the White Book gives the following for names(binomial()): family, names, link, inverse, deriv, initialize, variance, deviance, weight. So $aic wasn't there In The Beginning. I haven't done any more archaeology to try to figure out when/by whom it was first introduced ... Section 6.3.3, on extending families, doesn't give any other relevant info. A patch for
2005 Nov 10
0
Fonts, Plus
Dear R Wizards: sorry, I need more help. hopefully, it will help others in the future. I am using R 2.2.0 Patched (2005-11-07 r36217). [a] # copy from the postscriptFont documentation CMitalic <- postscriptFont("ComputerModern", c("CM_regular_10.afm", "CM_boldx_10.afm", "cmti10.afm", "cmbxti10.afm",
2014 Dec 18
3
Aw: Re: Re: rsync not copy all information for font file
Ram, ? Look inside the .AppleDouble folder and tou will find the resource forks that hold the main part of the font data. ? Not a 'problem' with netatalk, but just how netatalk works so that it can represent apple files on non-apple filesystems. ? ?If you confirm the data all matches, this will prove rsync is working properly. ? Bryan -------- Original message -------- From: Ram Ballu
2009 Aug 02
1
Character from Symbol Font on rgl Plot
I want to print characters from the symbol font (or perhaps even Wingdings) in an rgl 3d plot, but I am having no luck. So, what do I have to do in order to get this snippet to print out a character from the symbol font? library(rgl) open3d() text3d(1,1,1,"a",adj=c(0.5,0.5),cex=10,family="symbol",font=1) I am on Windows XP with R 2.9.1. Tom -- View this message in
2011 Jan 24
2
no font could be found for family "Arial"
I was re-running some code that I hadn't run in a couple of months to make barplots in R. I didn't change a single thing in the script, but the plots wouldn't work this time around. The plot itself (the bars and axes) will graph in the window, but no text appears. In the console it says I have a number of errors, all of which say "no font could be found for family
2009 Sep 08
1
Function to query ASTDB families
Hi, Asterisk database is made of <family><key> records such as: fam key1 val1 fam key2 val2 ... fam key100 val100 I'm looking for the smartest way to iterate among different keys associated to a given family. One way to do this is to parse "database show fam" response. Is there something smarter ? Something like ${DBKEYS(fam)} which would evaluate to "key1
2008 Jun 16
1
Specifying fonts in R
Hi I am a novice user of R. I got hold of "R Graphics" by P. Murrell the other day and am trying to follow examples in the book. In chapter 3, the section on font specification gives 16 "basic" font families and face combinations available in R (Figure 3.9). However, the book also warns that even if a font specification is given, it does not mean that the font will always be
2012 Mar 22
2
Randomly select elements based on criteria
Hi, I want to randomly pick 2 fish born the same day but I need those individuals to be from different families. My table includes 1787 fish distributed in 948 families. An example of a subset of fish born in one specific day would look like: >fish fam born spawn 25 46 43 25 46 56 26 46 50 43 46 43 131 46 43 133 46 64 136 46 43 136 46 42 136 46 50 136 46 85 137 46 64 142 46 85 144 46 56
2008 Aug 18
2
changing plot font for Times new roman
Dear all, I know that it is a know issue, but I would like to change the type of font on my plot, and I am not sure the rigth way. I would like to use Times New Roman font, but according to the "par()" help, some device allow we choose an family of fonts. I tryed par(family="times") without success. Surfing on R archieve I got an suggestion of use par(font.lab=6), but when I
2011 Aug 15
1
Font size R
Hi everyone. I'm using this following code: pdf(file="Fig5.pdf", width = 4.86, height = 6.29, pointsize = 10, family ='Times') par(mfcol = c(3,2), mai = c(0.4,0.8,0,0), omi = c(0.7, 0, 0.7, 0.1)); hist( rnorm(100) ) dev.off() When I open this in any vectorial software (like Illustrator), it says that my font size is 7 instead of 10 that I specified. I have tried