Displaying 20 results from an estimated 300 matches similar to: "Bug in stars function (PR#738)"
2000 Nov 20
1
Bug in stars.R (PR#739)
Hi all,
Please let me know if this isn't the correct place to report bugs in
contributed code. Otherwise, the following code contains one additional
line and a short comment above it. The extra line of code catches the
unusual situation where a data column contains all 0 values.
The corrected code is below the signature.
Thanks for your help.
Tom
Thomas S. Dye, Ph.D.
2002 Jun 02
0
''logwatch'' command
This message is in MIME format. The first part should be readable text,
while the remaining parts are likely unreadable without MIME-aware tools.
Send mail to mime@docserver.cac.washington.edu for more info.
---1463811327-2097478821-1023027109=:9844
Content-Type: TEXT/PLAIN; charset=US-ASCII
Here''s a version of /sbin/shorewall that has the ''logwatch'' command that
2002 Jun 02
0
Now here''s a version of /sbin/shorewall...
This message is in MIME format. The first part should be readable text,
while the remaining parts are likely unreadable without MIME-aware tools.
Send mail to mime@docserver.cac.washington.edu for more info.
---1463811327-1716203191-1023027413=:9844
Content-Type: TEXT/PLAIN; charset=US-ASCII
... that doesn''t have a broken "show log" command :-/
-Tom
--
Tom Eastep \
2009 Dec 04
2
[ggplot2] Wind rose orientation
Aloha all,
I love using ggplot. It took a while to get used to the grammar of
graphics, but it is starting to get easy now that I am thinking in a
more structured way.
A question. I'm making a wind rose that I'd like to be oriented with
due north straight up. I've discovered that the orientation is
sensitive to how north is represented. When north is represented as
0,
2009 May 12
2
pair matching
Given two numeric vectors of possibly unequal length, I'd like to pair
each element of the shorter vector with an element of the longer
vector such that the sum of squared differences between the pairs is
minimized. Can someone point me to an R function or an algorithm for
accomplishing this?
All the best,
Tom
Thomas S. Dye, Ph.D.
T. S. Dye & Colleagues, Archaeologists, Inc.
2011 Jul 11
3
Intransitive DAG
Aloha all,
I have an adjacency matrix for an acyclic digraph that contains
transitive relations, e.g. (u,v), (v,w), (u,w). I want a DAG with only
intransitive relations. Can someone point me to an R function that will
take my adjacency matrix and give me back one with only intransitive
relations? In the example, I'd like to get rid of (u,w) and keep (u,v)
and (v,w).
All the best,
Tom
--
2009 Feb 18
1
using stepAIC with negative binomial regression - error message help
Dear List,
I am having problems running stepAIC with a negative binomial regression model. I am working with data on manta ray abundance, using 20 predictor variables. Predictors include variables for location (site), time (year, cos and sin of calendar day, length of day, percent lunar illumination), oceanography (sea surface temp mean and std, sea surface height mean and std), weather (cos
2009 Jun 10
0
Help on drawing stars and radars in R
Hi
I don't know if you can help. I am a 2nd year Bsc Cosmetic Science student and in R I need some help in drawing stars.
The problem that I have is I want to recreate a radar diagram similar to the one in excel.
I have put in these commands in a script window:
stars(shampoo1[, 1:6], locations = c(0,0), radius = TRUE,
key.loc=c(0,0),
main = "Ranked Results for the Sensory
2008 May 24
0
stars to input integer in form
Hi,
I''d like to input an integer into form by simply clicking stars (i.e.
the click translates into integer 1-5). I don''t need a complex star
rating system. Any suggestions? Thank you very much
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this
1998 Jun 19
0
R-beta: Re: Significance stars
Just a comment from someone else who was taught to be suspicious of
'standardized' significance criteria. I got the 'critical statistic'
viewpoint in one set of stats courses, and the 'parameter estimation'
viewpoint in another.
>From my experience, about the only thing most people can guardedly agree
upon is the probability of the obtained statistic. This is only in
2006 Feb 08
0
Graphics Package --> stars()
Dear Collegues,
does anybody know how I can place a legend at a sensible position in a star diagram automatically? The legend should tell the name of the variable (from colnames) for every color used.
Sincerely, Markus
___________________
Markus Preisetanz
Consultant
Client Vela GmbH
Albert-Roßhaupter-Str. 32
81369 München
fon: +49 (0) 89 742 17-113
fax:
2001 Mar 04
1
Wine, Stars!, and the Battle VCR
I've got a situation where the current version of Wine is crashing when a
very repeatable action occurs. What command line parameter should I add to
create a log for the developers to look at and figure out what's going on?
Regards,
Mark Norton
2011 May 22
1
Having troubles with Stars!
So I have version 2.7 and it says that the sound file causes it to crash, which it does. What I'm having trouble with is figuring out how to disable the sound or something to stop it from crashing. Any ideas?
2009 May 04
1
whish stars.Rd
Dear Rdev,
in R 2.9.0 the doc of function stars() does not state that it
returns invisibly the location of atomic graphs. This is a
valuable information as it may help to set a value for the key.loc
parameter of this function.
My whish is just that the "value" section in stars.Rd should be
documented.
Best,
Pr. Jean R. Lobry
BTW, the URL:,
2019 Mar 28
0
default for 'signif.stars'
The addition of significant stars was, in my opinion, one of the worst defaults ever added
to R.?? I would be delighted to see it removed, or at least change the default.? It is one
of the few overrides that I have argued to add to our site-wide defaults file.
My bias comes from 30+ years in a medical statistics career where fighting the disease of
"dichotomania" has been an eternal
2003 Aug 07
1
graph for selected lines in stars()
Dear listers,
The following command (derived from the example in the ?stars help page)
works :
data(mtcars)
stars(mtcars[, 1:7])
But the following gives an error:
stars(mtcars[1, 1:7])
Error in s.y[i, ] : incorrect number of dimensions
I was expecting to have the star graph for the first line (Mazda Rx4)
The following give an incorrect graph for the first two cars :
stars(mtcars[1:2, 1:7])
2011 Jan 12
1
Basic Stars Plot - help ..
Hi there Rers
I am trying a very basic stars plot:
x<-matrix(c(1,4,3,1.1,2,3,4,3,1,1,5,2), ncol = 3, byrow = TRUE,
>> dimnames=list(c("a","b","c","d"),c("x","y","z")))
>
> stars(x, draw.segments = TRUE, radius=TRUE)
>
>
Can anyone explain what I am seeing there - EACH of my plots should have 3
coloured
2011 Nov 23
1
R for Windows - 5 stars award on Windows 7 Download
Dear R Development Core Team
R for Windows has been reviewed by Windows 7 Download and got 5 stars award: http://www.windows7download.com/win7-r-for-windows/snvrckjh.html
Draw attention to your product by making it visible on website that is used by people who are looking for Windows 7 software. The number of Windows 7 users is rising.
Please publish Windows 7 Download award on your website by
2009 Mar 22
1
data frame to array
Aloha all,
I have a data frame with 4 columns. The first three are factors (f1,
f2, f3) and the fourth is numeric. I'd like to explore these data
using median polish. To do that I plan to use medpolish() on the
matrix[f1,f2xf3], then medpolish on the resulting matrix[f2,f3]. This
approach is described by Cook on page 141 of Exploring Data Tables,
Trends, and Shapes.
split()
2019 Mar 28
0
default for 'signif.stars'
Dear all,
I agree with both Russ and Terry that the significance stars option should default to FALSE. Here's what Sandy Weisberg and I say about significance starts in the current edition of the R Companion to Applied Regression:
'If you find the ?statistical-significance? asterisks that R prints to the right of the p-values annoying, as we do, you can suppress them, as we will in the