Displaying 20 results from an estimated 400 matches similar to: "How to preserve the numeric format and digits ?"
2008 Nov 10
1
plotting graph in different device
Hi,
i try to plot my graph into different device using x11(),
but when i do this comes up:
> x11(print(plot(A5e$ECAB,A5e$EXPEND,type='p',main='Per capita expenditure
> against economic
+ ability index without
outliners',xlab='ECAB',ylab='EXPEND',xlim=c(0,150),ylim=c(150,400),
+ col='red',col.axis='blue')))
NULL
Warning message:
2008 Nov 04
2
use abline() for regression model in the plot
http://www.nabble.com/file/p20332968/spe.dat spe.dat
Hi,
i have a problem in sorting out some command in R and i am really hoping
some expert can help me out please!
i have the spe.dat file which i upload here, and when u read into R u got
something like this:
A5 <- read.table('spe.dat' ,header=TRUE)
A5
EXPEND ECAB MET GROW YOUNG OLD WEST STATE
1 256 85.5 19.7 6.9 29.6
2011 Aug 01
1
going past restrictions on number of elements
Hello R experts,
I'm trying to test R in a shared memory environment in which addressable memory is aggregrated to about 600G.
However, I get an error of 'too many elements' specified when I try creating a 45K x 100K matrix.
I tried running R with a --max-nsize=50000000000 option, but got the same message.
Is there a way to run create such large matrices?
thanks,
Paul Rodriguez
2013 Nov 14
3
What is wrong with this class?
somefile.pp
class mumble {
}
class mumble::testcontents inherits mumble {
file { "/tmp/testfile":
path => "/tmp/testfile,
ensure => present,
mode => 0640,
content => "I am a test file.",
puppet parser validate passed it.
puppet apply says it is run
yet no /tmp/testfile appears
the puppet master is running and this is being
2019 Aug 04
3
Extlinux no longer bootable, how to fix?
Hi,
I'm experiencing a strange problem, my extlinux is no longer bootable,
and I'm wondering how to troubleshoot the problem for a fix.
It's not just an one-off thing, but is happening to me all the time --
I use extlinux to boot up all my linux, and it has always been working
for me, for at least 10+ years. However recently I started to
duplicate my linux system from partition to
2017 Jun 12
3
Changing the IP Address of a Samba AD DC doesn't work - samba_dnsupdate crashes
Hello!
I've followed your tutorial to change the IP Address of our Samba AD DC:
https://wiki.samba.org/index.php/Changing_the_IP_Address_of_a_Samba_AD_DC
But the samba_dnsupdate tool always crashes with this output:
samba_dnsupdate --verbose
Unknown parameter encountered: "ks"
Ignoring unknown parameter "ks"
IPs: ['192.168.68.201']
Looking for DNS entry A
2011 Oct 27
2
Syntax Check: rshape2 melt()
This is my first excursion into using reshape2 and I want to ensure that
the melt() function call is syntactically correct.
The unmodifed data frame is organized this way:
head(tds.anal)
site sampdate param quant
1 UDS-O 2006-12-06 TDS 10800
4 STC-FS 1996-06-14 Cond 280
7 UDS-O 2007-10-04 Mg 1620
9 UDS-O 2007-10-04 SO4 7580
19 JCM-10B 2007-06-21 Ca 79
20
2016 Dec 22
5
Understanding SlotIndexes
Hi all,
I'm tracking down a register allocation problem and I'm trying to
understand this piece of code in InlineSpiller::spillAroundUses:
// Find the slot index where this instruction reads and writes OldLI.
// This is usually the def slot, except for tied early clobbers.
SlotIndex Idx = LIS.getInstructionIndex(*MI).getRegSlot();
if (VNInfo *VNI =
2011 Aug 16
2
sysdata.rda, namespaces and package dependencies
Hi all,
I'm struggling with accessing a package dataset (munsell.map, stored
in sysdata.rda) when that package is imported, not required. A simple
reproducible example is:
install.packages("munsell")
munsell::mnsl("10B 4/6")
# Error in match(col, munsell.map$name) : object 'munsell.map' not found
library(munsell)
munsell::mnsl("10B 4/6")
# Function
2013 Jun 26
1
[LLVMdev] Auxiliary operand types for disassembler.
On 06/25/2013 04:46 PM, Jim Grosbach wrote:
> Hi Sid,
>
> This feels like it’s exposing too much of the disassembler internals
> into the MCOperand representation. I’m not sure I follow why that’s
> necessary. Can you elaborate a bit?
>
A packet contains 1-4 insns and until the contents of the entire packet
are known the meaning of any individual insn is not known with 100%
2006 Nov 21
2
Handle Options Method
Hi,
I have an Alteon in test (a sip/rtp load balancer).
This Alteon sends to the asterisk box a "SIP OPTIONS" to know if
asterisk is alive.
However, asterisk sends me a 404 message and not a response like, for
example, a Thomson (200 + SDP)
I wrote a very little script (you can find it at the end of the email)
to send an Options message to asterisk/phones to try.
It works
2003 Nov 04
1
asterisk and zplex10b (fwd)
hello all,
I still experience the random off-hook on my fxo cxhannels, i am using a
zplex-10b channel bank. which does not allow me to call out.
The situation still persists...this is what i have in the zapata.conf
[channels]
context=internal
context=incoming
context=default
usecallerid=no
usecallwaiting=no
signalling=fxs_ks
channel=1-8
signalling=fxo_ks
channel=16-24
but i still have the the
2013 Jun 25
0
[LLVMdev] Auxiliary operand types for disassembler.
Hi Sid,
This feels like it’s exposing too much of the disassembler internals into the MCOperand representation. I’m not sure I follow why that’s necessary. Can you elaborate a bit?
-Jim
On Jun 25, 2013, at 8:24 AM, Sid Manning <sidneym at codeaurora.org> wrote:
>
> I'm working on a disassembler for hexagon (vliw) architecture and I would like to add an additional operand type,
2011 Oct 10
2
Collection_select
Hi,
I''m new using RoR and I have a ... trouble with
f.collection.select
What I have in a table is ... for example
group code
GroupA 07A
GroupA 08A
GroupA 10B
GroupB 06A
GroupB 11B
GroupB 07B
GroupC 10A
GroupC 09A
GroupC 09B
when I use
<%= f.collection_select :grupo, Equipo.find(:all), :id, :name, prompt:
''Choose a Group'' %>
2013 Jun 25
2
[LLVMdev] Auxiliary operand types for disassembler.
I'm working on a disassembler for hexagon (vliw) architecture and I
would like to add an additional operand type, "kAux" to the MCOperand class.
The reason for this is that each insn has parse bits which are not
explicit operands and have differing meanings based on the insn's
location within the packet and the number of insns inside the packet.
In order for the disassembler
2006 Apr 12
0
Netmask validator
Sharing the wealth. I just finished working on a custom netmask
validator and thought others might benefit. Of course, comments and
suggestions are welcome.
def validates_netmask(*attr_names)
configuration = { :only_numbers => ''must only use numbers as octet values'',
:range => ''has one or more octet values that are > 255'',
2005 May 28
2
bandwidth control on htb
Hi,
I implemented queues on some ports with htb by filtering. and to have
a constant bw, i defined rate and ceil the same. But while watching
the bw''s, I ve realized they may sometimes exceed the defined value
for short periods. How could I avoid this situation? I thought that
implementing a leaky bucket''d be fine but i m not sure about this and
how to do it on tc.
I would be
2010 Jan 13
0
Bug#565048: xen-3: ftbfs with gcc-4.5
Package: xen-3
Version: 3.4.2-2
Severity: normal
Tags: sid
User: debian-gcc at lists.debian.org
Usertags: ftbfs-gcc-4.5
The package fails to build in a test rebuild on at least amd64 with
gcc-4.5/g++-4.5, but succeeds to build with gcc-4.4/g++-4.4.
For the compiler version used, see:
http://lists.debian.org/debian-devel/2010/01/msg00230.html
The full build log can be found at:
2019 Aug 05
0
Extlinux no longer bootable, how to fix?
On Sun, Aug 4, 2019 at 6:13 PM Tong Sun via Syslinux
<syslinux at syslinux.org> wrote:
>
> Hi,
>
> I'm experiencing a strange problem, my extlinux is no longer bootable,
> and I'm wondering how to troubleshoot the problem for a fix.
>
> It's not just an one-off thing, but is happening to me all the time --
> I use extlinux to boot up all my linux, and it
2002 Aug 19
1
AW: Out of memory
> "Liaw, Andy" wrote:
> >
> > I have run into similar problems occasionally on Windoze
> NT. For whatever
> > reason, R refuses to do anything, including q("no").
>
> So you got a prompt and were able to type it in? Strange! Never seen
> something like that!
>
>
> > The only way out was
> > to kill it via Task Manager.