Displaying 16 results from an estimated 16 matches for "least_".
Did you mean:
least
2018 Nov 28
3
named arguments discouraged in `[.data.frame` and `[<-.data.frame`
...R-devel would be more appropriate than R-help)
#############################
Background:
Now and then students presents there fancy functions like this:
myfancyfun(d,12,0.3,0.2,500,1000,FALSE,TRUE,FALSE,TRUE,FALSE)
Incomprehensible. Thus, I encourage them to use spaces and name arguments, _at least_ when trying to communicate their code with others. Something like:
myfancyfun(data = d, n = 12, gamma = 0.3, prob = 0.2,
size = 500, niter = 1000, model = FALSE,
scale = TRUE, drop = FALSE, plot = TRUE, save = FALSE)
Then some overzealous students star...
2006 May 09
1
Rails freeze, weird error
...st/unit.rb:285
from /usr/bin/irb:13
I''m guessing, for now, that I can''t do what I wanted to do (Rails 1.1.x from
vendor/rails externals) but I''m not sure why. And, does this mean that I''ll
be unable to jump to Rails 1.1.x until my shared host goes _at least_ that
far? (In other words, this freezing business appears to only work going
backwards, not forwards.)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060509/912babf4/attachment-0001.html
2018 Nov 29
2
named arguments discouraged in `[.data.frame` and `[<-.data.frame`
...R-devel would be more appropriate than R-help)
#############################
Background:
Now and then students presents there fancy functions like this:
myfancyfun(d,12,0.3,0.2,500,1000,FALSE,TRUE,FALSE,TRUE,FALSE)
Incomprehensible. Thus, I encourage them to use spaces and name arguments, _at least_ when trying to communicate their code with others. Something like:
myfancyfun(data = d, n = 12, gamma = 0.3, prob = 0.2,
? ? ? ? ? ? ? ? ? ? ? size = 500, niter = 1000, model = FALSE,
? ? ? ? ? ? ? ? ? ? ?scale = TRUE, drop = FALSE, plot = TRUE, save = FALSE)
Then some overzealous students start...
2017 Mar 21
0
Linux distribution targeted at 32-bit hardware
...t ones. I don't have this old hw on the internet.
>
>
> --
> MartinS
With the purpose of reducing the amount of "noise", I am replying in
this one email to several posts.
"Pentium 4" is _not_ the same as "Pentium".
"Pentium 4" is _at least_ i686, certainly not i586.
Debian 8.x "Jessie" is supposed to support at least i586.
Debian 9.x "Stretch" is supposed to support at least i686.
I already posted, in a very recent email, possible Linux distributions
that support 32-bit. The (non-exhaustive) alternatives, mostl...
2020 Sep 04
3
[Bug 1462] New: `nft -j list set` does not show counters
..."timeout"
],
"timeout": 2592000,
"elem": [
{
"elem": {
"val": 53,
"expires": 2591982
}
},
...
}
I would expect the JSON output to be _at least_ as complete as the human
readable output. Even if the counter had to be described as a string, it would
be better than nothing.
Thanks,
Devin
--
You are receiving this mail because:
You are watching all bug changes.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:...
2007 Jan 18
4
Porting to RISC
Hello Everyone,
for a small embedded System i would like to install CentOS, but it is a
RISC System. So my Question is it possible to rebuild some SRPMs for
RISC?
Thanks in Advance
Daniel
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 189 bytes
Desc: Dies ist ein digital signierter Nachrichtenteil
URL:
2018 Nov 28
0
named arguments discouraged in `[.data.frame` and `[<-.data.frame`
...t;
> #############################
>
> Background:
>
> Now and then students presents there fancy functions like this:
>
> myfancyfun(d,12,0.3,0.2,500,1000,FALSE,TRUE,FALSE,TRUE,FALSE)
>
> Incomprehensible. Thus, I encourage them to use spaces and name arguments,
> _at least_ when trying to communicate their code with others. Something
> like:
>
> myfancyfun(data = d, n = 12, gamma = 0.3, prob = 0.2,
> size = 500, niter = 1000, model = FALSE,
> scale = TRUE, drop = FALSE, plot = TRUE, save = FALSE)
>
>
>...
2005 Jun 15
2
FreeBSD 5.4 SMP kernels now available via FreeBSD Update
It sounds like the SMP kernel I provided for FreeBSD 5.3 was quite
popular, so I've started building an SMP kernel for FreeBSD 5.4 as
well, in addition to the usual GENERIC kernel. To take advantage
of this on your FreeBSD 5.4 SMP system, run the following commands
as root:
# touch /boot/kernel/SMP
# freebsd-update fetch
# freebsd-update install
# echo 'bootfile="SMP"'
2006 Apr 17
3
IPFW Problems?
Hi,
I have a system with a 4.11 Kernel. Unless I'm doing something very
wrong, there seems to be something odd with ipfw.
Take the following rules:
ipfw add 00280 allow tcp from any to any 22 out via bge0 setup keep-
state
ipfw add 00299 deny log all from any to any out via bge0
ipfw add 0430 allow log tcp from any to me 22 in via bge0 setup limit
src-addr 2
ipfw add 00499 deny log
2017 Mar 21
2
Linux distribution targeted at 32-bit hardware
David Christensen wrote:
> It seems that most Linux distributions I look at are dropping support
> for 32-bit hardware.
Aren't you using Debian? AFAIK jessie supports i586, so if Pentium is
old enough for you you're good to go for likely at least two more
years.
After that I guess I'd be using old unsupported Debians for the
ancient ones. I don't have this old hw on the
2018 Nov 29
0
named arguments discouraged in `[.data.frame` and `[<-.data.frame`
...-help)
#############################
Background:
Now and then students presents there fancy functions like this:
myfancyfun(d,12,0.3,0.2,500,1000,FALSE,TRUE,FALSE,TRUE,FALSE)
Incomprehensible. Thus, I encourage them to use spaces and name arguments, _at least_ when trying to communicate their code with others. Something like:
myfancyfun(data = d, n = 12, gamma = 0.3, prob = 0.2,
size = 500, niter = 1000, model = FALSE,
scale = TRUE, drop = FALSE, plot = TRUE, save = FALSE)
Then som...
2008 Aug 05
5
boxplot with average instead of median
I really like the ease of use with the boxplot command in R. I would
rather have a boxplot that shows the average value and the standard
deviation then the median value and the quartiles.
Is there a way to do this?
Chad Junkermeier, Graduate Student
Dept. of Physics
West Virginia University
PO Box 6315
210 Hodges Hall
Morgantown WV 26506-6315
phone: (304) 293-3442 ext. 1430
fax: (304)
2016 Feb 25
0
[PATCH 1/5] fat: fix minfatsize for large FAT32
...the creation of Ridgecrop's Large FAT32
formatting tool.
_ Cluster size: 32 KiB per Cluster
_ Amount of FATs: 2
_ Root Directory Sectors: 0 (please keep reading)
When formatting FAT32, the Root Directory will be created, so the
actual amount of Root Directory Sectors is not zero, but at_least_one.
The reason I am writing here a value of zero is because, for FAT32, the
Root Directory Sectors are not part of the "head" of the filesystem
structure (as opposed to what happens in FAT12/16, both including the
Root Directory Sectors as being "outside" or "before&quo...
2016 Feb 25
3
[PATCH 1/5] fat: fix minfatsize for large FAT32
Hi Ady,
On 2016.02.25 02:08, Ady via Syslinux wrote:
> There is an "extra" sector, in comparison to... what exactly?
Sorry if I wasn't clear. I think I implied that the Large FAT32 fat size
had an extra sector compared to minfatsize, when of course I meant the
opposite (the Large FAT32 has one less sector than the minfatsize
computed by the unpatched code, hence the check
2011 May 10
13
Proposed table specification (long!)
Gentlefolk,
I have been thinking on Markdown's lack of "proper" table support for a long
while now. Here's where I have arrived...
## I Don't Like HTML Tables
It is often argued that embedded HTML is the way to markdown rich tables.
Unfortunately, this contradicts the higher markdown ideal that a raw
markdown document (including tables!) should be good
1. Firstly for
2003 Dec 01
0
No subject
...t;
List-Archive: http://lists.samba.org/pipermail/samba/
On Tue, 7 Aug 2001, Rich Forman wrote:
> I'm having the exact same problem with the latest cvs. If a do a 'make
> revert' back to right after 2.2.1 was released everything works fine again.
i search on the source and _at least_ found something (there was
no log about this, even i set log level = 9 or higher):
> > Opened status file pv?
^^^^^^^
from the source, filename held by a variable (fname), but this variable
never initialize.
> > Failed to open byte range locking database
> &...