Displaying 20 results from an estimated 500 matches similar to: "speedometer charts in R"
2012 Jul 26
1
How to draw fancy image in R?
Hi,
I am working on reporting and need some fancy image instead of barplot, pie
etc. Like Clock and Speedometer. How can i draw myself in R?
Regards
--
View this message in context: http://r.789695.n4.nabble.com/How-to-draw-fancy-image-in-R-tp4637866.html
Sent from the R help mailing list archive at Nabble.com.
2023 Jul 21
1
plotly question
Colleagues
Here is my reproducible code
plot_ly(
? domain = list(x = c(0, 1), y = c(0, 1)),
? value = 2874,
? title = list(text = "Generic"),
? type = "indicator",
? mode = "gauge+number+delta",
? delta = list(reference = 4800),
? gauge = list(
??? axis =list(range = list(NULL, 5000)),
??? steps = list(
??? list(range = c(0, 4800), color = "white"),
???
2023 Jul 21
1
plotly question
As you apparently haven't received any responses yet, I'll try to
suggest something useful. However, I have absolutely zero experience
with plotly, so this is just from general principles and reading the
plot_ly Help file, which says for the "..." arguments:
"Arguments (i.e., attributes) passed along to the trace type. See
schema() for a list of acceptable attributes for a
2012 Jun 14
3
mapa provincial de España con googleVis
Se ha borrado un adjunto en formato HTML...
URL: <https://stat.ethz.ch/pipermail/r-help-es/attachments/20120614/518ed68f/attachment.html>
2023 Jul 21
2
plotly question
plotly is _not_ associated with posit. I think you are unlikely to find expertise with plotly in their forums. You might find help at stackoverflow.com.
On July 21, 2023 1:40:49 PM PDT, Bert Gunter <bgunter.4567 at gmail.com> wrote:
>As you apparently haven't received any responses yet, I'll try to
>suggest something useful. However, I have absolutely zero experience
>with
2012 Mar 07
3
sobre googlevis
Buenas.
Esta mañana estoy trasteando un poco con googlevis, sobre todo para ver
si introducimos algunos gráficos chulos en la página web de la empresa (
hacemos estudios sociológicos).
Y estaba viendo esta página
http://neurochem.sisbio.recerca.upc.edu/?p=276 y no encuentro la forma
de reproducir el gráfico de las puntuaciones factoriales . Usando
gvisScatterChart puedo dibujar los puntos
2012 Nov 29
2
googleVis plot and knitr/sweave
Dear R users.
I'm currently making a report with knitr (RStudio) where I would like to
plot a googleVis map. However, the map generated is an HTML file which I
don't know how to integrate it in my report.
So my question is how to include a map generated with googleVis in a PDF
created with knitr/sweave.
Regards,
Phil
--
View this message in context:
2020 Mar 23
2
PLSPM_Gastón Sanchez
Saludos a todos.
Tengo que aplicar:
Two-Step Approach (patch approach)
Hybrid Approach (give away approach)
De acuerdo al libro de Gaston Sanchez "PLS Path Modeling with R".
¿Alguien puede apoyarme?
--
*César O. Velázquez Vega**.*
[[alternative HTML version deleted]]
2011 Oct 31
1
googleVis motionchart - slow with Date class
Hi,
I am trying to create a googleVis motion chart with monthly data. When formatting the date column as a Date class variable, the plot as presented in the browser becomes considerably slower and very prone to crashing the browser. To illustrate this issue I have modified the WorldBank demo.
### objects from demo("WorldBank", package = "googleVis")
M <-
2011 Jun 07
1
error with geomap in googleVis
Hi All,
I am unable to get the plot geomap in googleVis package. data is as follows
> head(index.ret)
country ytd
1 Argentina -10.18
2 Australia -3.42
3 Austria -2.70
4 Belgium 1.94
5 Brazil -7.16
6 Canada 0.56
> map1 = gvisGeoMap(index.ret,locationvar = 'country', numvar = 'ytd')
> plot(map1)
But it just displays a blank page, showing an
2010 Dec 10
3
(no subject)
Hi R-help,
I am trying to find a way to select five highest values in data frame
according some variable. I will demonstrate:
c
X1 X2
1 1 1
2 1 2
3 1 3
4 1 4
5 1 5
6 1 6
7 1 7
8 1 8
9 1 9
10 1 10
11 2 11
12 2 12
13 2 13
14 2 14
15 2 15
16 2 16
17 2 17
18 2 18
19 2 19
20 2 20
21 2 21
22 2 22
23 2 23
24 2 24
25 2 25
So I
2013 Mar 20
3
highlight overlapping region of two densities
Hi all.
I would like to highlight overlapping regions of two densities and I could
not find a way to do it.
Here is the sample code:
myd <- c(2,4,5, 4,3,2,2,3,3,3,2,3,3,4,2,4,3,3,3,2,2.5,
2, 3,3, 2.3, 3, 3, 2, 3)
myd1 <- myd-2
plot(range(density(myd)$x, density(myd1)$x), range(density(myd)$y,
density(myd1)$y), type = "n")
lines(density(myd), col=1, lwd=4)
2011 Mar 14
2
data.frame transformation
Hi R users,
I have following data frame
df<-data.frame(q1=c(0,0,33.33,"check"),q2=c(0,33.33,"check",9.156),
q3=c("check","check",25,100),q4=c(7.123,35,100,"check"))
and i would like to replace every element that is less then 10 with . (dot)
in order to obtain this:
q1 q2 q3 q4
1 . . check .
2 . 33.33 check 35
2011 Dec 04
3
RODBC connect to Excel (64-bit Windows 7)
Hi to all.
I have a problem to connect to an Excel database using RODBC.
Namely, I am using 64-bit R 2.14.0, under Windows 7 and I tried following:
library(RODBC)
> channel <- odbcConnectExcel("results.xlsx")
Error in odbcConnectExcel("results.xlsx") :
odbcConnectExcel is only usable with 32-bit Windows # ok this is
clear why it doesn't work
> channel
2011 Mar 16
2
export list to csv
Hi everybody.
I have list like this:
l<-list(data.frame(q1=c(1,2,"check"),q2=c(3,"check",5)),
data.frame(q1=c("check",1),q2=c(4,5)))
names(l)<-c("A","B")
rownames(l[[1]])<-c("aa","bb","cc")
rownames(l[[2]])<-c("aa","bb")
Every object has the same number of columns but different number
2011 Apr 12
2
Converting a categorical variable to multiple dichotemous variables
I have a categorical variable in a dataframe similar to the following...
cat
1
1
3
2
4
I need to convert it to 4 dichotemous variables for each observations like...
cat1 cat2 cat3 cat4
1 0 0 0
1 0 0 0
0 0 1 0
0 1 0 0
0 0 0 1
Thanks in advance!
Shane
2013 Oct 29
2
Hoy reunión del "Grupo de Usuarios de R de Madrid - martes 29-octubre"....
Deberías instalar también, como poco, ggmap. RStudio no suele venir nunca mal.
No sé si hay wifi en el bar para instalar las últimas dependencias...
Un saludo,
Carlos J. Gil Bellosta
http://www.datanalytics.com
El día 29 de octubre de 2013 13:44, Miguel Fiandor Gutiérrez
<mfiandor en gmail.com> escribió:
> qué recomendáis llevar instalado además de R?
> R-studio?, algunos paquetes
2011 Aug 10
1
subqueries in sqlQuery function (package RODBC)
Hi R users.
sorry for missing example and if question is to general but I am wondering
if it is possible to execute subqueries in function sqlQuery (package RODBC)
with opened connection with Excel or SQL server 2000. I couldn't find any
example of this.
And if it is possible what should be a correct syntax for this query:
SELECT ct,COUNT(*) as n
FROM (SELECT COUNT(*) AS ct FROM children
2010 Dec 11
2
package sampling
Hi R users.
I have a problem with function strata in sampling packages.
> st0 = strata(dom, stratanames="stratas", size=sample.size,
method="systematic",pik, FALSE)
Error in sort.list(y) : 'x' must be atomic for 'sort.list'
Have you called 'sort' on a list?
In previous version of R 2.9.1 and previous version of package sampling this
code worked
2010 Dec 19
1
package survey
Hi R users,
could someone help me to find out which formulas, for standard error
calculation, are used in following example:
a=data.frame(weights=rep(c(10,1),c(4,1)),fpc=rep(41,5),uk=rep(1,5))
srs<-svydesign(id=~1, weights=~weights, data=a)
srs1<-svydesign(id=~1, weights=~weights,fpc=~fpc, data=a)
svytotal(~uk,srs)
total SE
uk 41 9
svytotal(~uk,srs1)
total SE
uk 41