Displaying 20 results from an estimated 213 matches for "murder".
2012 Aug 21
1
make check fails two tests on RHEL 6 build
...gt; [1] "R (>= 2.14.0)"
>
> attr(,"class")
> [1] "DependsList" "list"
Testing examples for package ?stats?
comparing ?stats-Ex.Rout? to ?stats-Ex.Rout.save? ...
6325c6325
< Grand Mean: 291.5937
---
> Grand Mean: 291.5938
12674c12674
< Murder -0.536 0.418 0.341 0.649
---
> Murder -0.536 0.418 -0.341 0.649
12675c12675
< Assault -0.583 0.188 0.268 -0.743
---
> Assault -0.583 0.188 -0.268 -0.743
12676c12676
< UrbanPop -0.278 -0.873 0.378 0.134
---
> UrbanPop -0.278 -0.873 -0.378 0.134
12677c12677
< Rape...
2008 Jan 12
2
Lattice equivalent of par(mfrow = )
Dear r-helpers,
Does anyone have a straightforward example of putting together three
unrelated (expect for a common y-axis) xyplot() figures in what would
be in base graphics a par(mfrow = c(1, 3)) arrangement?
_____________________________
Professor Michael Kubovy
University of Virginia
Department of Psychology
USPS: P.O.Box 400400 Charlottesville, VA 22904-4400
Parcels: Room 102
2002 Jan 27
5
EPS->LaTeX problem
.....
\resizebox{\textwidth}{\textheight}{\includegraphics{crime.eps}}
When I do this, the entire slide (including the page number) is rotated
180 degrees. Any ideas why this happens?
The graph was created using the syntax in R:
data(USArrests)
postscript(file="crime.eps")
plot(USArrests$Murder, USArrests$Assault)
abline(lm(USArrests$Assault ~ USArrests$Murder))
dev.off()
Thanks for any advice. This is rather urgent, as I'm trying to use it for
a lecture in my class Monday morning.
ap
----------------------------------------------------------------------
Andrew J Perrin - andrew_pe...
2006 Dec 05
1
problem with lists...
Hi guys,
I am new to R, so sorry if my problem seems trivial.
Sometimes I encounter some lists, which I cannot index their components
with [ . ]
For instance the prcomp() function returns a 'prcomp' object whose
components are some 'lists'. the second component is a list that
comtains the following:
> mylist <- churn[2]
> class(mylist)
[1] "list"
>
2008 Jan 13
1
What is the 'scale' in princomp() function?
...) from stats packages to do Principal
Components Analysis, I am not very clear what is the "scale".
And the scores are different from "PROC PRINCOMP" procedure from SAS.
Using the example data from this package:
restpc <- princomp(USArrests, cor = TRUE)
> restpc$scale
Murder Assault UrbanPop Rape
4.311735 82.500075 14.329285 9.272248
> sd(USArrests)
Murder Assault UrbanPop Rape
4.355510 83.337661 14.474763 9.366385
Why 'restpc$scale' is different from 'sd(USArrests)'?
felix
2008 Mar 06
0
Help with colinearity problem in multiple linear regression
...sults which is required for the parallelism
technique to work.
Does anyone have any pointers how this might be accomplished?
Thanks,
Caleb
-------
# Bigger example
# Introduce artificial colinearity to test case
P = cbind(USArrests[2]*2, USArrests)
names(P) = c("Introduced", "Murder", "Assault", "UrbanPop", "Rape")
# Split the data into partitions to be calculated separately
# In the real case the full data would have been too large and
# each instance would have received just a chunk of data.
P1 = P[1:25,]
P2 = P[26:50]
# Partition 1 - cal...
2009 Dec 23
1
prcomp : plotting only explanatory axis arrows
Dear all,
I have a very large dataset (1712351 , 20) and would like
to plot only the arrows that represent the
contribution of each variables.
On the sample below I woild like to plot
only the explanatory variables (Murder, Assault..)
and not the sites.
prcomp(USArrests) # inappropriate
prcomp(USArrests, scale = TRUE)
prcomp(~ Murder + Assault + Rape, data = USArrests, scale = TRUE)
plot(prcomp(USArrests))
summary(prcomp(USArrests, scale = TRUE))
biplot(prcomp(USArrests, scale = TRUE))
Thanks a lot,
milton
[[alt...
2007 Jun 27
1
Condensed PCA Results
...ficients.
"lm(y~x)$coefficients" gives you just the regression coefficients when you carry
out the command.
When I carry out PCA on R, typically I get:
Standard deviations:
[1] 83.732400 14.212402 6.489426 2.4827900
Rotation:
PC1 PC2 PC3 PC4
Murder 0.04170432 -0.04482166 0.07989066 -0.99492173
Assault 0.99522128 -0.05876003 -0.06756974 0.03893830
UrbanPop 0.04633575 0.97685748 -0.20054629 -0.05816914
Rape 0.07515550 0.20071807 0.97408059 0.07232502
I want to get only:
PC1 PC2 PC3 PC4
Mur...
2011 Sep 09
2
prcomp: results with reversed sign in output?
Dear All,
when I'm running a PCA with
prcomp(USArrests, scale = TRUE)
I get the right principal components, but with the wrong sign infront
Rotation:
PC1 PC2 PC3 PC4
Murder 0.5358995 -0.4181809 0.3412327 0.64922780
Assault 0.5831836 -0.1879856 0.2681484 -0.74340748
UrbanPop 0.2781909 0.8728062 0.3780158 0.13387773
Rape 0.5434321 0.1673186 -0.8177779 0.08902432
instead of
PC1 PC2 PC3 PC4
Murder -0.5358995 0.4181809 -0.3412327 0.64922780
Assault -0.5831836 0.1879856 -...
2006 Jun 19
2
saving rounded numbers as a new variable in a dataframe
A basic question, but one that eludes me. I have created a new variable
$numurder, which I have rounded off. I want to save the rounded off version
of this variable to an existing datafile called 'ngri.csv' .
numurder <-c((murder*no.of.cases)/100)
[[1]]
[1] 48.952 112.073 182.160 974.610 122.140 663.432 150.856 18.988
137.925 198.045 68.930 203.148 30.056...
2006 Jan 04
5
multiple lowess line in one plot
I'm using this code to plot a smoothed line. These two columns of data
really represent 4 groups and I'd like to plot a separate line for each
group but have them all in the same plot. The R-Docs for lowess do not
seem to indicate some type of "GROUPS=var_name" option. What would be
the syntax for this?
plot(AWGT ~ lipid )
lines(lowess(lipid , AWGT, f=.8))
--
Dean
2006 Jul 23
2
constructing a dataframe from a database of newspaper articles
...hiatrist or
medical practitioner and community members and it will be chaired by a
legal officer. Leave will be approved by the corresponding previous
bodies. Chief Justice Paul de Jersey who presided over the 1995 case of
Ross Farrah, a paranoid schizophrenic, who after murdering his
girlfriend,
Christine Nash, was allowed out of the John Oxley Centre to play
sport and
see movies, says the proposed legislative changes to the Mental
Health Act
appear to be "refinements". Two weeks ago, Nash's teenage son Wade
committed suicide...
2002 Mar 20
1
RODBC under Windows
...I did
cc <- odbcConnect("Excel Test")
data(USArrests)
sqlSave(cc, USArrests, rownames="States")
sqlTables(cc) # shows the Sheet1$ and
USArrests$ as system tables and USArrests as a table
sqlQuery(cc, "select state, murder from USArrests") # works
fine
sqlQuery(cc, "select state, murder from USArrests where rape>30")
This last statement gives me a type mismatch error. After disconnecting
and inspecting the Excel file I discovered that all the values were saved
as text.
I thought tha...
2008 Sep 21
2
r format questions
Hi,
1) I have noticed that when I use the aggregate function it outputs numbers in the results. for example:
aggregate by product
group.1 Aggregate
1 ProductA 1000400.00
2 ProductB 23232323.00
3 Missing 232323.00
is there a way to suppress the numbers infront of aggregate outputs. I checked and they don't look like columns when I do a summary so I can't -1
2012 Jan 14
3
Storage - posibilities?
Hi all.
Currently I am administering a mail cluster in which messages are
stored on software RAID shared with NFS. There are several NFS
servers, every one of them exports a part of all mail files for a
specific frontend with postfix.
We are thinking about replacing these storage hosts with one solution,
maybe a storage array with appropriate disk space and I/O capacity.
What are pros and cons
2017 Aug 23
2
Aw: Dovecot - Postfix Calender Synchronisation
We murdered web applications with a chainsaw. Web 2.0 has too many security holes.
On Wed, Aug 23, 2017 at 8:35 PM, Mihai Badici <mihai at badici.ro> wrote:
> the vaste majority of web applications around use the same stack.
2008 Sep 22
1
change the panel name in xyplot
Hi,
I try to change the panel name in a xyplot without success.
Look this example from xyplot manual:
xyplot(Murder ~ Population | state.region,data=states)
The panel title are:
Northeast, South, North Central, West, that are factor from state.region.
I need do change some names and, for example, put some of these in italic. I
dont find how change this.
I looking for this in Deepayan Sakar lattice book, bu...
2006 Feb 23
4
Dovecot as a smart IMAP proxy
...to
execute hooks which modify mail contents, such as transparent
encrypting/decrypting mails, or maybe some virus-filtering? It would
need at least some kind of IMAP command/reply parsing capabilities, so
it might be able to do all kinds of other things.
Maybe one potential use case would be Cyrus Murder-like proxying to
multiple IMAP servers to distribute the mailboxes. But that might be
done better as an imap process plugin, or maybe as IMAP mail storage
backend.
Anyway, the reason I'm asking this is because I was asked to add mail
encryption/decryption capabilities to Dovecot's IMAP pro...
2001 Sep 27
4
ssh2 key passphrase problems in 2.9.9 on Linux
...subtly bad build.)
--
Linux Now! .........Because friends don't let friends use Microsoft.
phil stracchino :: alaric at babcom.com :: halmayne at sourceforge.net
unix ronin :::: renaissance man :::: mystic zen biker geek
2000 CBR929RR, 1991 VFR750F3 (foully murdered), 1986 VF500F (sold)
2014 Oct 22
1
"make check" fails on lapack.R and stats-Ex.R
Hi folks,
I suspect this is a request for a sanity check than a bug report:
I've been successfully compiling an optimised version of R for several years using the Intel compiler and MKL. I've just test-run the new Intel 15.0 compiler suite, and I'm seeing a few numeric failures that I don't see using the same build method with Intel 13.0. I've attached the output of