Displaying 3 results from an estimated 3 matches for "tdenes".
Did you mean:
denes
2011 Mar 01
0
unicode&pdf font problem RESOLVED
...t; = 11, family = "Helvetica", encoding = "CP1257")
>
> Just an FYI for the archives, that encoding fails with
> pdf(encoding="CP1257") on a Mac when printing that target umlaut.
>
> David.
>>
>> *S*
>>
>> On 11-01-13 16:17, tdenes at cogpsyphy.hu wrote:
>>
>>> Date: Thu, 13 Jan 2011 16:17:04 +0100 (CET)
>>> From: tdenes at cogpsyphy.hu
>>> To: David Winsemius <dwinsemius at comcast.net>
>>> Cc: r-help at r-project.org
>>> Subject: Re: [R] unicode&pdf font problem...
2011 Jan 13
1
unicode&pdf font problem
Dear List,
I would like to print a plot into pdf. The problem is that the character
\U0171 is replaced by a simple 'u' (i.e. without accents) in the pdf file.
Example:
# this works fine
plot(1,type="n")
text(1,1,"print \U0171")
# this fails
pdf("trial.pdf")
plot(1,type="n")
text(1,1,"print \U0171")
dev.off()
I found an earlier post at
2011 Jul 29
4
finding a faster way to run lm on rows of predictor matrix
Hi, everyone.
I need to run lm with the same response vector but with varying predictor vectors. (i.e. 1 response vector on each individual 6,000 predictor vectors)
After looking through the R archive, I found roughly 3 methods that has been suggested.
Unfortunately, I need to run this task multiple times(~ 5,000 times) and would like to find a faster way than the existing methods.
All three