Displaying 19 results from an estimated 19 matches for "60th".
Did you mean:
10th
2004 Apr 26
2
Looking for help in calculating percentiles
Hi All:
I am working with a dataset on Arsenic toxicity, and I am trying to
calculate the 20th, 40th, 60th, 80th, and highest percentiles for a
variable, dietary Moisture (variable name dMoist).
The inbuilt function quantile(dMoist) would print 0, 25th, 50th, 75th, and
100th percentile. Does there exist a function that can calculate xth
percentile (where x = 10th, 20th, ... etc) values?
I looked...
2011 Nov 29
1
hour in x-axis
...)
I need to plot AggData[,2] vs time (AggData[,1]) for chosen 'rows'. Ive done
already:
plot(AggData[rows,2], xaxt='n')
axis(1,at=seq(1,length(rows),1),sub("","", AggData[rows,1]))
which works, but I need to list only chosen data points, say full hours or
every 60th point, something like:
axis(1,at=seq(1,seq(1,length(rows),60)),sub("", "",
AggData[day.rows[seq(1,length(rows),60)],2]))
but does not work. Could be nice if time on the x-axis is in H:m format (no
seconds).
In the original data time bout is 1 minute, e.g. 17:19:35, 17:20:35,...
2018 Oct 12
2
Scroll bar arrows missing and behaviour change
...These days Firefox and thunderbird are being rushed with new
releases. "Releases" full of security holes (take a look at CentOS
update history: firefox security updates are the most often ones). As if
they are aiming to beat everybody in version number (currently major
version in 50th-60th). But they can not beat Microsoft who has a
release: Windows 2000.
</rant>
[no beginning of rant tag, as I'm not certain where to put it]
Valeri
>
>
> Leroy Tennison
> Network Information/Cyber Security Specialist
> E: leroy at datavoiceint.com
> 2220 Bush Dr
>...
2004 Mar 06
1
Desktop Filesystem Benchmarks in 2.6.3
...e data was never flushed to disk. You will find that the inode is not
taking any disk space since all it has is a size, there are no disk
blocks allocated for it yet.
This same will apply to other metadata only journaling filesystems. The
current linux kernel VM will write out the metadata after 1/60th of a
second and the data after 30 seconds. So the possibility of losing data
when unplugging the power within 30 seconds is quite large. The only way
of being sure that your data will get to the disk is using fsync in the
program of sync after closing the program.
------------
I am trying XFS from...
2009 Jun 06
1
Rpad - avoid removal of manually created html-tags in R chunk
Dear Rpad-users,
currently I am setting up a web page using Rpad (www.rpad.org). But I
have a problem with generating dynamic html-output in the Rpad chunk.
Here an example of my problem:
I have the following index.html file:
<html>
<head>
<title>example</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
2018 Oct 12
1
Scroll bar arrows missing and behaviour change
...ox and thunderbird are being rushed with new
> releases. "Releases" full of security holes (take a look at CentOS update
> history: firefox security updates are the most often ones). As if
> they are aiming to beat everybody in version number (currently major
> version in 50th-60th). But they can not beat Microsoft who has a release:
> Windows 2000.
>
<mark's rant added into Veleri's>
Oh, and they had to jump 40 numbers, to keep up with Google/Chrome,
because....
Right, like WinCrap, *have* to change the user interface, because... oh,
that's right, th...
2018 Oct 12
0
Scroll bar arrows missing and behaviour change
...ox and thunderbird are being rushed with new
> releases. "Releases" full of security holes (take a look at CentOS update
> history: firefox security updates are the most often ones). As if
> they are aiming to beat everybody in version number (currently major
> version in 50th-60th). But they can not beat Microsoft who has a release:
> Windows 2000.
>
<mark's rant added into Veleri's>
Oh, and they had to jump 40 numbers, to keep up with Google/Chrome,
because....
Right, like WinCrap, *have* to change the user interface, because... oh,
that's right, th...
2004 Apr 26
0
AW: Looking for help in calculating percentiles
...Von: arinbasu at softhome.net [mailto:arinbasu at softhome.net]
Gesendet: Montag, 26. April 2004 09:29
An: r-help at stat.math.ethz.ch
Betreff: [R] Looking for help in calculating percentiles
Hi All:
I am working with a dataset on Arsenic toxicity, and I am trying to
calculate the 20th, 40th, 60th, 80th, and highest percentiles for a
variable, dietary Moisture (variable name dMoist).
The inbuilt function quantile(dMoist) would print 0, 25th, 50th, 75th, and
100th percentile. Does there exist a function that can calculate xth
percentile (where x = 10th, 20th, ... etc) values?
I looked...
2007 Sep 17
2
problems with nested loop
Hi, everyone:
R is new to me. I am writing a nested loop to simulate data for t-test. The following code is wrong. The subscript is out of bounds. Could anyone tell me how to revise it? Thanks, Riddle Chin.
result<-matrix(ncol=5, nrow=1000)
colnames(result)<-c('N=20','N=40','N=60','N=80','N=100')
for (i in 1:1000){
for (j in
2011 Oct 02
0
Arimax First-Order Transfer Function
...transfer function to an
ARIMA intervention analysis using the "arimax" function. The data was
obtained from McCleary & Hay (1980) (via Rob Hyndman's Time Series Library:
http://robjhyndman.com/tsdldata/data/schizo.dat). It has 120 time points
with an intervention occurring on the 60th unit. So far I've been able to
run a simple zero-order intervention model , which I've done like this:
Model1 <-arimax(x,order=c(0,1,1), xreg=Intv)
** where Intv <-as.matrix(c(rep(0,60),rep(1,60))) (the dummy, intervention
variable).
I'd like to add a first-order transfer funct...
2006 Feb 10
14
dynarch calendar and calendar helper usage
I am playing around with this and reference this wiki from RonR site...
http://wiki.rubyonrails.org/rails/pages/CalendarHelper
The error I am getting is:
NameError in Placements#list
undefined local variable or method `date_format'' for
#<PlacementsController:0xb78f9ef4>
RAILS_ROOT: script/../config/..
Application Trace | Framework Trace | Full Trace
2011 Aug 28
2
converting matrix in array
Hi everyone,
have a small problem trying to converting a dataset in matrix form to an
array.
Specifically: data include 3D measurement -x,y,z of 59 points in 36 objects.
They are stored as a matrix (x) of 2124 rows and 3 columns.
What I want to do is to extract each subject's dataset using an array (b).
Accordingly, I tried the following command:
b<-array(a,c(59,3,36)).
The problem is
2008 Aug 01
4
Plotting ordered nominal data
...recipient you should not disclose, copy
or distribute information in this e-mail or take any action in reliance
on its contents. To do so is strictly prohibited and may be unlawful.
Please inform the sender that this message has gone astray before
deleting it. Thank you.
2008 marks the 60th anniversary of the NHS. It's an opportunity to pay
tribute to the NHS staff and volunteers who help shape the service, and
celebrate their achievements.
If you work for the NHS and would like an NHSmail email account, go
to: www.connectingforhealth.nhs.uk/nhsmail
2009 Mar 31
4
Tax Preparation with WINE
....
Tax preparation is the pivotal reason for my not completely abandoning Windows. If there are other self-preparers who would like be able to do their taxes on an exclusively Linux machine, I hope that they will inform TAX ACT of such.
2nd Story Software, Inc
ATTN: TAX ACT Development
1425 60th Street NE, Suite 300
Cedar Rapids, IA 52402
(319) 373-3600
https://www.taxact.com/tsupport/support_request.asp
Then, too, some WINE developers may invite the challenge of making it possible for Linux users to install a working version of a Windows-based tax program.
A tip of the wine glass,...
2010 Mar 03
5
[PATCH, PV-GRUB DOC] Add details to PV-GRUB documentation
Add a couple of documentation details about PV-GRUB support
- the menu.lst content can be passed as a ramdisk.
- virtual partitions are not supported.
Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
diff -r b8d2a4134a68 stubdom/README
--- a/stubdom/README Wed Mar 03 17:41:58 2010 +0000
+++ b/stubdom/README Wed Mar 03 20:42:53 2010 +0100
@@ -52,11 +52,17 @@
extra =
2018 Oct 12
6
Scroll bar arrows missing and behaviour change
I have done some Googling on this but everything I've found appears to be at
least 2 years old and mostly refers to Gnome
TBH, I'm surprised nobody else has mentioned it - maybe it's only happened to
me.
At some point over the last few months the behaviour of the scroll bars
changed and I'm finding it very annoying.
Firstly, the arrows have vanished.
Secondly, when clicking
2004 Nov 20
0
ffmpeg2theora start and end time support
For last few days I was trying to learn ffmpeg and libtheora API. In the
process, I have modified ffmpeg2theora code to include support for start
time and end time.
ffmpeg2theora -s 60 -e 130 file.avi
will produce file.ogg which will be from 60th to 130th second of input
file (something like -ss and -endpos in mencoder). This is a useful
feature for someone who wants to cut a part of video and encode it using
theora.
I am attaching modified ffmpeg2theora.c. Just place this file in file from
http://www.v2v.cc/~j/ffmpeg2theora/
--
Nilesh...
2009 Apr 01
0
回复: R-help Digest, Vol 73, Issue 32
... 2009
To: r-help@R-project.org
Message-ID:
<OF0518A42C.BF69E4D7-ON85257589.005129CD-85257589.005129D4@fordham.edu>
Content-Type: text/plain; charset=US-ASCII
Conference on Quantitative Social Science
Research Using R
June 18-19 (Thursday-Friday), 2009, Fordham University, 113 West 60th
Street, New York. (next door to Lincoln Center for Performing Arts).
conf. website: http://www.cis.fordham.edu/QR2009
Hrishikesh (Rick) D. Vinod
Professor of Economics, Fordham University
author of new econometrics book using R:
http://www.worldscibooks.com/economics/6895.html
---------------...