search for: criminals

Displaying 20 results from an estimated 314 matches for "criminals".

Did you mean: criminal
2006 Oct 26
3
Measurements of 3000 criminals
Hallo everyone, excuse me if this is not a genuine R question but I do not know where to ask else. Referring to e.g. https://stat.ethz.ch/pipermail/r-help/2004-December/062114.html I wonder if these measurements of 3000 criminals (raw data) are available anywhere. At least I didn't find them in the R datasets package or by means of Google. What I did find was a table of frequencies of the central values for *grouped* classifications (finger lenghts) in the Handbook of Small Data Sets. Thank you in advance. D. Trenkl...
2011 Aug 09
1
lavaan: how to analyse residuals of a latent variable
Hi r-help, I use lavaan:sem() for structural equation modelling with latent variables. Below is a reproducible example (the code requires a working installation of lavaan) where the latent variable criminality is in focus. Besides criminality in general, I am specifically interested one of the manifest variables that make up the latent variable criminality, namely fire.setting. My question is:
2009 Oct 15
1
"Complex?" import of pdf files (criminal records) into R table
Hi there, I'm facing the decision if it would be possible to transform several more or less complex pdf files into an R Table-Format or if it has to be done manually. I think it would be a impudent to expect a complete solution, but I would be grateful if anyone could give me an advice on how the structure of such a R-program could look like, and if it's possible in general. Here
2016 Feb 24
5
Bitcoin for CentOS 7
On 02/24/2016 06:04 AM, m.roth at 5-cent.us wrote: > Alice Wonder wrote: >> For those interested I have a working spec file for Bitcoin 0.12.0 >> >> https://github.com/AliceWonderMiscreations/bitcoin/blob/master/contrib/rpm/bitcoin.spec >> >> I believe the only BuildRequires that isn't in CentOS/EPEL is >> miniupnpc-devel but that's trivial to build
2008 Jan 14
2
G.729 pre-compiled binaries and Asterisk 1.2.x.
Asterisk 1.2.24 seems to crash repeatedly under any substantial call load (and sometimes without a substantial call load - just one SIP leg is enough to do it) when using the G.729 pre-compiled binaries from: http://asterisk.hosting.lv/ As per: http://www.voip-info.org/wiki-Asterisk+G.729+Licensing Time to crash is variable, but seems to require at least an hour of production performance
2020 Oct 29
2
Good Evening,
I contacted Martin Maechler (maechler at stat.math.ethz.ch) and was advised to contact you for input on the question below...thanks! I am very new with the R experience, all I know is that it's computer language & coding... I'm trying to plot a regression graph for runif (100, 1000, 10000). What am I not getting here, I can get the values in R no problem, but no idea how to turn it
2008 Dec 08
1
Anyone know which vulnerability specifically they are referring to?
http://www.networkworld.com/news/2008/120608-fbi-criminals-auto-dialing-with-hacked.html?Inform=nl&netht=rn_120808&nladname=120808dailynewsamal Criminals are taking advantage of a bug in the Asterisk Internet telephony system that lets them pump out thousands of scam phone calls in an hour, the U.S. Federal Bureau of Investigation warned Frida...
2016 Feb 24
0
Bitcoin for CentOS 7
On 02/24/2016 06:06 AM, Alice Wonder wrote: > On 02/24/2016 06:04 AM, m.roth at 5-cent.us wrote: >> Alice Wonder wrote: >>> For those interested I have a working spec file for Bitcoin 0.12.0 >>> >>> https://github.com/AliceWonderMiscreations/bitcoin/blob/master/contrib/rpm/bitcoin.spec >>> >>> >>> I believe the only BuildRequires that
2009 Feb 25
2
run latent class analysis with R
What's the best approach to running latent class analysis with R? I've downloaded both randomLCA and poLCA packages, but I am interesting in running a standard LCA with individual records (not frequency table) as input data. Wen Gu John Jay College of Criminal Justice445 West 59 StreetNew York, NY 10029 wgu@gc.cuny.edu _________________________________________________________________
2010 Oct 22
1
cannot connect to an FTP server with long HELLO message
Hi, Trying to access files on the ftp server at ftp.ncbi.nih.gov will either give a time out or sometimes even a segfault on Linux. The 2 following methods give the same results: f <- url("ftp://ftp.ncbi.nih.gov/pub/geo/DATA/SOFT/GDS/GDS10.soft.gz", open="r") download.file("ftp://ftp.ncbi.nih.gov/pub/geo/DATA/SOFT/GDS/GDS10.soft.gz", destfile=tempfile())
2011 Mar 03
11
mySQL connection testing
Does anybody know of a way to test whether a mySQL connection invoked from the dialplan is current or not? For example: extensions.conf =============== [context] exten => _X.,1,MYSQL(Connect connid localhost user pass db) exten => _X.,n,MYSQL(Query resultid ${connid} SELECT `something` FROM `table` WHERE `number` = ${EXTEN}) exten => _X.,n,MYSQL(Fetch foundRow ${resultid} something)
2016 May 15
6
Ransomware?
...#39;s network was infected by opening a realistic looking email apparently from a genuine supplier to the company and personally addressed. The infection occurred on Wednesday, but encryption of the server only took place late on Friday afternoon, presumably having obtained encryption keys from the criminals. The malware did not encrypt documents on the infected PC, but documents and spreadsheets in every folder on the samba shares were encrypted. Fortunately the backup to rdx disk was working (On my previous visit to the customer the backup had NOT been working and nobody had noticed!). I used linux...
2011 Jan 20
7
Mailing list question
Hi, Is the any kind of 'tag' that I can include at the end of my message to make the list processing software ignore and dispose of my disclaimer? In other words - something like <disclaimer> at the end of my message would inform the list software to remove any lines after it. My massive disclaimer is added by the server you see - and it's now annoying me - let alone the rest
2012 Sep 25
2
Recategorizing Nominal variable
Hello, I would like to take a data set of doctors, and recategorize them into numbers. For example, John Doe would be assigned as 1 Jane Doe would be assigned as 2 Does anyone know how to do this in R? It seems quite easy, yet I cannot find the code. Thank you, Michael Leitson Research Intern MSAS Candidate Michael.Leitson@wellstar.org
2016 Apr 05
5
Free Redhat Linux (rhel) version 7.2
Johnny Hughes wrote: > On 04/04/2016 08:39 AM, Timothy Murphy wrote: >> I read that Redhat was offering their Linux free, >> and downloaded the ISO, though I haven't run it. >> >> What do CentOS users think of Redhat's offer? > You need read the usage license. I glanced through this before downloading the ISO. But I can't locate it now on the RedHat
2005 May 23
3
skewness and kurtosis in e1071 correct?
I wonder whether the functions for skewness and kurtosis in the e1071 package are based on correct formulas. The functions in the package e1071 are: # -------------------------------------------- skewness <- function (x, na.rm = FALSE) { if (na.rm) x <- x[!is.na(x)] sum((x - mean(x))^3)/(length(x) * sd(x)^3) } # -------------------------------------------- and #
2010 Mar 06
0
[LLVMdev] [PATCH]: MSVC build enhancements
Le 06/03/2010 11:43, José Fonseca a écrit : > Attached are two patches with MSVC build enchancements. > > They are quite trivial, but were necessary to correctly link LLVM > libraries with Mesa3D on Windows. > > Jose > > Are you volontary trying to break everyone build (just to build your own project), or have you no idea of the effect of this change:
2018 Apr 25
0
[OFF-TOPIC] Reminder to tighten ALL types of security
This posting is off-topic because it is not about Centos. Please refrain from replying to the list as that will generate further off-topic traffic inevitably irritating subscribers. On the balance of probabilities, I think everyone will benefit from reading at least the first 6 pages of a 19 pages English criminal sentencing statement about a child, in England, successfully breaking into the home
2004 Sep 10
1
process_single
...GDB to see if I can track down these problems. - -- Russell O'Connor <http://www.math.berkeley.edu/~roconnor/> ``[Law enforcement officials] suggested that the activists were stopped not because their names are on the list, but because their names resemble those of suspected criminals or terrorists.'' -- SFGate.com -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (SunOS) Comment: For info see http://www.gnupg.org iD8DBQE90LenuZUa0PWVyWQRAoPHAJ9JJeDOMbncmtBIhiKae/f0UB5uDgCfZ61M 4s3q4IowdvCpoYgs3c5q5gU= =VT4W -----END PGP SIGNATURE-----
2004 Sep 10
1
MMIOFLAC
...und to it yet. Thanks for the easy to use API. - -- Russell O'Connor <http://www.math.berkeley.edu/~roconnor/> ``[Law enforcement officials] suggested that the activists were stopped not because their names are on the list, but because their names resemble those of suspected criminals or terrorists.'' -- SFGate.com -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (SunOS) Comment: For info see http://www.gnupg.org iD8DBQE92JnwuZUa0PWVyWQRAhbpAKCAGRBKMmDF2Rhe1wYUHDna9dZLfgCePOTA 3ezIqRTfMUWuvewEOeSOUWE= =AUhG -----END PGP SIGNATURE-----