Displaying 20 results from an estimated 800 matches similar to: "Col.names parameter in write.csv (PR#10411)"
2007 Sep 14
1
Copying row names
I have been trying to copy the row names of one matrix to another matrix but
having difficulty. The original matrix contains a row name which I would
like to replicate in the new matrix. I use the following approach?
The two matrices have identical dimensions.
rN <- row.names(origMatrix)
row.names(newMatrix) <- rN
However the new matrix does not take on the labels.
I have also tried,
2008 Oct 24
1
write.csv(..., col.names = FALSE) (PR#13202)
Full_Name: Stefan Albrecht
Version: 2.7.2 (and 2.8.0)
OS: Windows NT
Submission from: (NULL) (194.127.8.17)
Dear R Debug-Team,
in write.csv() it is not possible to set both
row.names = FALSE, col.names = FALSE
since the col.names = FALSE gets overwritten:
> write.csv
function (...)
{
Call <- match.call(expand.dots = TRUE)
for (argname in c("col.names", "sep",
2011 Nov 21
2
Continue AGI after Dial() following caller hang up?
Hello,
We would like to continue a Perl AGI after a Dial() it has done completes
following caller hangup. We would like to do this in the same AGI, and not
using a new AGI from the 'h' extension. It works fine when the called party
hangs up and the 'g' option is used, but not for caller hangup.
Is this possible?
If not a confirmation that this is the case would be very helpful.
2005 Jun 29
2
write.csv suggestion
Hello all,
I had some trouble recently with write.csv because I couldn't change one
of the default options. A quick view of the code showed that the
function was not defined in the most optimal way.
Currently,
write.csv <- function (..., col.names = NA, sep = ",", qmethod =
"double")
write.table(..., col.names = NA, sep = ",", qmethod = "double")
2005 Jul 07
1
write.csv (PR#7992)
The write.csv() function is currently implemented as
function (..., col.names=NA, sep=",", qmethod="double")
{
write.table(..., col.names=NA, sep=",", qmethod="double")
}
Surely, it should be
function (..., col.names=NA, sep=",", qmethod="double")
{
write.table(..., col.names=col.names, sep=sep,
2020 Oct 28
4
PJSIP tight loop on auth failure
Hi,
We're using Asterisk 13.17.0 with PJSIP 2.8 bundled.
I've found an issue when Asterisk tries to make a SIP call out using
auth, but has the wrong credentials and keeps getting returned a SIP
407, in this example to an OpenSIPs server requiring user auth.
Basically this happens:
1. Asterisk sends plain INVITE to OpenSIPs
2. OpenSIPs responds with SIP 407 auth required with a
2009 Nov 02
1
two small wishes (with code sugegstions) for R-core
Dear R developers,
It would be great if you could implement the two minor code changes suggested below, which would help processing large objects in R.
Jens Oehlschl?gel
# Wish no. 1: let [.AsIs return the class AFTER subsetting, not the class of the original object
# Wish no. 2: adjust write.csv and write.csv2 for multiple calls in chunked writing
# Rationale no. 1: a couple of packages
2002 Feb 08
2
rsync to Win 2000 machine
Hi
Is it possible to rsync a RedHat Linux 7.1 machine across a 56K dialup
to a Win2000 machine?
Thanks
Wadeegh
2011 Mar 01
3
error in saved .csv
An embedded and charset-unspecified text was scrubbed...
Name: nem el?rhet?
URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20110301/5c9ded63/attachment.pl>
2018 Apr 19
3
R Bug: write.table for matrix of more than 2, 147, 483, 648 elements
Le 19/04/2018 ? 09:30, Tomas Kalibera a ?crit?:
> On 04/19/2018 02:06 AM, Duncan Murdoch wrote:
>> On 18/04/2018 5:08 PM, Tousey, Colton wrote:
>>> Hello,
>>>
>>> I want to report a bug in R that is limiting my capabilities to
>>> export a matrix with write.csv or write.table with over
>>> 2,147,483,648 elements (C's int limit). I found
2017 Nov 08
2
file shred
Hi,
if we were to use shred to delete a file on a gluster volume, will the
correct blocks be overwritten on the bricks?
(still using Gluster 3.6.3 as have been too cautious to upgrade a
mission critical live system).
Cheers,
Kingsley.
2011 Jan 16
1
The RGtk2 package did not find libglade installed. Please install it.
Hello,
I'm looking forward to mining some new data six
ways from Sunday with a great looking R
application named "rattle".
May I please have the benefit of this list's
informed thoughts on how to debug an installation
error?
On Debian Linux's unstable release, I've done
root$ aptitude install r-cran-rattle
root$ aptitude install r-cran-rgtk2
user$ R
2011 Mar 06
2
Can body() return a function's body intact, in order, and as characters ready for editing?
Is my understanding correct that the body()
function currently can't return a function's body
intact, in order, and as characters ready for
editing?
My testing and reading of body()'s help indicate
that it can not.
Here's what I'm seeing.
Consider pasting
1+
and a function containing
x^2
together to get
1+x^2
As you can see below, body() reports three
2010 May 24
2
Delay in IVR
HI, I have in 'inbound route' a IVR, with press 1 or 2 the destination call
is always a ring group called '600', my problem is that after press 1 (but
this problem is present also with press 2) before that the inbound call is
transfer to extension pass 10/11 seconds !
In attach log file about incoming call.
I use Trixbox with Asterisk-1.6.0.10.
Thanks.
------
Salvatore.
2003 Nov 06
2
Summary: How to represent pure linefeeds chr(10) under R for Windows
Thanks to all who have responded.
My concern was to be able to write a csv file that can have line feeds in
string columns chr(10).
Why? Excel allows line feeds chr(10) within cells and line breaks
chr(13)+chr(10) at line ending,
but the windows version of R automatically replaces \n by \r\n in writing
and \r\n by \n in reading (text mode).
The clues for a solution came from Brian Ripley and
2010 Jan 25
2
Detected digit 'f'
Hi,
Does anyone know what it means when I've got an incoming fax routed
through to iaxmodem+hylafax and then I see this in the asterisk log:
DEBUG[18902] chan_dahdi.c: Detected digit 'f'
This happens just after the initial fax negotiation has started and
seems to correspond with the sending fax machine giving up.
Googling hasn't helped me here :(
--
Cheers,
Kingsley.
2020 Oct 28
1
PJSIP tight loop on auth failure
On Wed, 2020-10-28 at 14:40 -0300, Joshua C. Colp wrote:
> This is not yet fixed, but is being worked on. I have it as a
> security issue currently out of caution (although I don't think we'll
> treat it as one after further investigation).
Right OK, thanks.
Do you have any idea of the sort of timescale, and whether it'll be
available as a patch that we can apply to our
2003 Jul 03
2
Upgrading a jail
We are trying to upgrade a machine with jails from 5.0 to 5.1. We've
CVS'd and
done the upgrade on the 'main' machine, but how do we mount our build
directory
to upgrade the jails?
Thanx!
-- Dave
--
Dave Kingsley Voice: 617-745-3806
Systems Administrator FAX: 617-745-3907
Eastern Nazarene College
23 E. Elm Avenue E-mail: kingsled@enc.edu
Quincy, MA 02170
2023 Feb 23
1
5s delays before executing the dialplan
Hi,
We've recently hit an issue with Asterisk 18.8.0 where a call comes in
via SIP (using pjsip) but it can take 5 seconds before starting to
execute the dialplan.
This was intermittent, but frequent (eg approx half of the calls).
We have verbose logging on, but I didn't see any errors.
Running asterisk -r -vvvv and then watching SIP traffic in another
window showed the INVITE coming
2011 Dec 01
3
AGI script that uses google's text to speech engine
Hello,
I have written an AGI script for asterisk that uses google translate for
text to speech synthesis.
It supports a variety of different languages, local caching for the voice
data and wideband audio.
The voice in most languages is female and the quality of the synthesized
speech is very high.
More info about the script can be found here:
http://zaf.github.com/asterisk-googletts/
the first