search for: superscipt

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

Did you mean: superscript
2004 Oct 14
3
Problem with number characters
...a superscript. Here is the result pasted into this email I'm composing in emacs: "Draszt 0%/1???iso8859-15??" Another clue for the knowledgable: when I try to display the vector element causing trouble, I get <CHARSXP: "Draszt 0%/1???iso8859-15??"> where again the superscipt part is just "3" in my R session. I'm working in Linux, R version 1.9.1, 2004-06-21. Your help will be much appreciated. Scott Waichler Pacific Northwest National Laboratory scott.waichler at pnl.gov
2002 Jun 19
1
superscripts in xyplot labels
...Average external temperature (deg. C)", ylab = paste(paste("Gas consumption (1000", expression(ft^3),")"), aspect = "xy", strip = function(...) strip.default(..., style = 1)) It produces a label "Gas consumption (1000 ft^3)" for y axis insted of a superscipted 3 as in plot(). Any workaround to produce superscripts or subscripts for labels in xyplot()? TIA, Richard -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help...
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 formatti...
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() &gt...