Subíndices en gráficas en R


No puedo encontrar una manera de escribir subíndices en el título o el subtítulo en R. ¿Cómo puedo escribir v 1,2 con 1,2 como subíndices?

Gracias por su ayuda!

Author: jeffrey, 2012-04-14

5 answers

expression es su amigo:

plot(1,1, main=expression('title'^2))  #superscript
plot(1,1, main=expression('title'[2])) #subscript
 112
Author: smu,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2017-06-03 11:34:22

Si está buscando tener varios subíndices en un texto, use la estrella (*) para separar las secciones:

plot(1:10, xlab=expression('hi'[5]*'there'[6]^8*'you'[2]))
 99
Author: Cyrille,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2014-05-21 09:15:11

¿Ves ?expresión

plot(1:10,main=expression("This is a subscript "[2]))

introduzca la descripción de la imagen aquí

 23
Author: Chase,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2012-04-14 19:07:06

Un subíndice que hace referencia a un valor almacenado...

a <- 10
plot(c(0,1), c(0,1), type = 'n', ann = FALSE, xaxt = 'n', yaxt = 'n')
text(0.2, 0.6, cex = 1.5, bquote(paste('S'['f']*' = ', .(a))))

introduzca la descripción de la imagen aquí

 7
Author: Tony Ladson,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2016-04-12 09:12:43

Otro ejemplo, la expresión funciona para superíndices negativos sin la necesidad de comillas alrededor del número negativo:

title(xlab=expression("Nitrate Loading in kg ha"^-1*"yr"^-1))

Y solo necesita el * para separar secciones como se mencionó anteriormente (cuando escribe un superíndice o subíndice y necesita agregar más texto a la expresión después).

 2
Author: user29609,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2016-09-21 18:32:22