search for: superscipts

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

Did you mean: superscripts
2004 Oct 14
3
Problem with number characters
I am trying to process text fields scanned in from a csv file that is output from the Windows database program FileMakerPro. The characters onscreen look like regular text, but R does not like their underlying binary form. For example, one of text fields contains a name and a number, but R recognizes the number as something other than what it appears to be in plain text. The character string
2002 Jun 19
1
superscripts in xyplot labels
R-helpers; I tried to get a superscripted 3 in the following xyplot example but failed: >data(whiteside) >xyplot(Gas ~ Temp | Insul, whiteside, panel = function(x, y, ...) { panel.xyplot(x, y, ...) panel.lmline(x, y, ...) }, xlab = "Average external temperature (deg. C)", ylab = paste(paste("Gas consumption (1000", expression(ft^3),")"), aspect
2010 May 10
1
Supercripting text
...on in R and introduced it to my coworkers. The function is designed to make plotting easier and more efficient, which will in turn be more cost-effective for the company. The reviews for the function have been positive thus far, except for one issue -- addition of superscripts to the title. We need superscipts in the titles sometimes to highlight footnotes which appear at the bottom of the plots. The syntax for supersciprts, however, is rather cumbersome, especially in titles since it needs to be bolded. So far the only way of superscripting is to use the expression() function. But to go about formattin...
2007 Jun 24
2
matlab/gauss code in R
...Adding exponents (superscript format) to a plot > To: Judith Flores <juryef en yahoo.com>, RHelp <r-help en stat.math.ethz.ch> > Message-ID: <466583.57100.qm en web32802.mail.mud.yahoo.com> > Content-Type: text/plain; charset=iso-8859-1 > > # Using expression to add superscipts to the labels > > vec=c(1,10,100,1000,10000,100000,1000000,10000000) > plot(vec,vec,log="xy", axes=F) > axis(1, at=10^c(0,2,4,6), labels=expression(1, 10^2, > 10^4, 10^6)) > axis(2, at=10^c(0,2,4,6), labels=expression(1, 10^2, > 10^4, 10^6), las=1) > box() >...