Displaying 20 results from an estimated 24346 matches for "characters".
Did you mean:
character
2013 May 11
1
blazer_ser problem on windows NUT 2.6.5-3780M
...vmin -1
0.414024 ReadTotalTimeoutConstant -2, ReadIntervalTimeout -1,
ReadTotalTimeoutMultiplier -1
0.521030 Trying megatec protocol...
0.625036 send: 'Q1'
0.627036 w32_serial_read : ulen 512, vmin_ -1, vtime_ 0, hEvent
00000054
0.642037 w32_serial_read : characters are available on input buffer
0.647037 w32_serial_read : Reading 1 characters
0.651038 w32_serial_read : total characters read = 1
0.654038 w32_serial_read : Reading 2 characters
0.658038 w32_serial_read : total characters read = 3
0.661038 w32_serial_read : Readi...
2010 Jul 21
1
asterisk realtime SIP configuration
Hi All,
I am trying to configure asterisk realtime. But i am unable to get the
extensions listed successfully when i type "sip show peers" in the asterisk
CLI . i am unable to see any failure logs when i do a reload
i can able to connect to the data source through "odbc show" in the
CLI, Any hep in this regard is highly appreciated. Following is the
configuration
2015 Jun 19
2
Sobre data.table
Mª Luz,
si el comando de Carlos te devuelve 0 es que no hay NA's.
Da igual que tus columnas sean caracteres o número.
Lo que intuyo es que tienes celdas con la frase "NA" que interpretas como NA.
Mandanos el summary de tu data.table y lo vemos...
----- Mensaje original -----
De: "MªLuz Morales" <mlzmrls en gmail.com>
Para: "Carlos J. Gil Bellosta"
2012 Feb 20
3
Confused: Inconsistent result?
This is copy & paste from my session:
> xyz<-as.vector(c(ls(),as.matrix(lapply(ls(),class))))
> dim(xyz)<-c(length(xyz)/2,2)
>
> allobj<-function(){
+ xyz<-as.vector(c(ls(),as.matrix(lapply(ls(),class))));
+ dim(xyz)<-c(length(xyz)/2,2);
+ return(xyz)
+ }
> xyz
[,1] [,2]
[1,] "a" "character"
[2,]
2007 Feb 07
2
Problems Generating Scaffolding
I am having trouble generating some of my scaffolding. I''m trying to
use PostgreSQL as my back-end. Some of my scaffolding generates with
no problem but for other parts I get this:
Before updating scaffolding from new DB schema, try creating a table
for your model
The tables do exist. At least I can see them from psql.
Here is the SQL I''m using to create my tables:
CREATE
2006 Nov 19
3
host allow
Hi,
We want to restrict acces to the shares on our samba server using "hosts
allow".
Can I get this to work with clients who have dynamic IP addresses and
don't have revers DNS lookup ?
Best regards,
Eric Eijkelboom
Sr Systems Manager
Medtronic B.V.
Heerlen, The Netherlands
Phone : +31-(0)45-566.8544
Fax : +31-(0)45-566.8008
www.medtronic.com <http://www.medtronic.com/>
2009 Feb 18
2
understanding how R determines numbers and characters when creating a data frame
Hello R Users and Developers,
I have a basic question about how R works. Over the past few years I have
struggled when I try to generate a new data frame that I believe should
contain numeric data in some columns and character data in others only to
find everything converted to character data. Is there a general method to
create data frames that contain the data in the desired format: numbers
2008 Dec 12
7
character count
Dear list,
I have a variable that consists of typed responses. I wish to compute
a variable equal to the number of characters in the original variable.
For example:
> x <- c("convert this to 32 because it has 32 characters", "this one has 22 characters", "12 characters")
[Some magic function here]
> x
[1] 32 22 12
Any ideas?
2005 Jan 13
3
as.character methods
Hello,
?as.character says that the as.character function is a generic with
usage: as.character(x, ...). So, I want to create an S4 object with an
as.character method following the above usage, but I get the below error
telling me that ... isn't in the generic for as.character.
> setClass("tmp", "numeric")
> setMethod("as.character", "tmp",
2005 Jan 13
3
as.character methods
Hello,
?as.character says that the as.character function is a generic with
usage: as.character(x, ...). So, I want to create an S4 object with an
as.character method following the above usage, but I get the below error
telling me that ... isn't in the generic for as.character.
> setClass("tmp", "numeric")
> setMethod("as.character", "tmp",
2020 May 01
4
paste(character(0), collapse="", recycle0=FALSE) should be ""
Without 'collapse', 'paste' pastes (concatenates) its arguments elementwise (separated by 'sep', " " by default). New in R devel and R patched, specifying recycle0 = FALSE makes mixing zero-length and nonzero-length arguments results in length zero. The result of paste(n, "th", sep = "", recycle0 = FALSE) always have the same length as
2012 Jan 19
8
sumarizar
*Hola!!! resulta que tengo unos datos de divisas ordenados por fechas
(días) los que he convertido a formato tipo YYYY-MM-DD donde DD siempre es
01:*
*
*
*
EUR.resto$date<-as.Date(EUR.resto$date)
EUR.resto$mo <- substr(EUR.resto$date,6,7)
EUR.resto$yr <- substr(EUR.resto$date, 1,4)
2016 Nov 30
2
Sieve script won't compile. Compiler output isn't helpful.
...ileinto :create "Banking";
stop;
}
-------------- next part --------------
newfilter: line 100: error: unexpected character(s) starting with '-'.
newfilter: line 100: error: expected end of command ';' or the beginning of a compound block '{', but found unknown characters.
newfilter: line 104: error: unexpected character(s) starting with '-'.
newfilter: line 113: error: unexpected character(s) starting with '.'.
newfilter: line 113: error: unexpected character(s) starting with '.'.
newfilter: line 114: error: unexpected character(s) starting...
2013 Dec 09
2
How can I find nonstandard or control characters in a large file?
...package. This works for certain subsets of the columns, but not
for others. I have not yet been able to precisely identify the problem
columns, as there are 731 columns and running colbycol on the file on my old
slow machine takes about 6 hours.
However, my suspicion is that there are some funky characters, either
control characters or characters with some non-standard encoding, somewhere
in this 14 gig file. Moreover, I am concerned that these characters may
cause me trouble down the road even if I use a different approach to getting
columns out of the file.
Is there an r utility will search throug...
2007 Nov 15
3
How to deal with character(0)?
I want to identify whether a variable is character(0), but get lost.
For example, if I have
> dd<-character(0)
the following doesn't seem to serve as a good identifier:
> dd==character(0)
logical(0)
So how to detect character(0)?
Thanks,
Gang
2008 Oct 15
3
Removing characters and periods from character strings
Hello R-users,
I have code that gives me the important variables from an analysis. I
need to input these variables into a different analysis. To do this, I
need to modify them slightly... 1) remove all numbers at the end of the
variables, 2) remove all periods.
I tried to do it with the awkward code below. It works to remove all
the numbers, but when I try to remove the period everything
2005 Oct 10
0
compile problem on solaris10 x86
Any idea? This is with wine-20050930.
Thanks.
...
../../tools/winegcc/winegcc -B../../tools/winebuild -shared
./ddraw.spec clipper.o ddraw_hal.o ddraw_main.o
ddraw_thunks.o ddraw_user.o ddraw_utils.o main.o
palette_hal.o palette_main.o regsvr.o surface_dib.o
surface_fakezbuffer.o surface_gamma.o surface_hal.o
surface_main.o surface_thunks.o surface_user.o
surface_wndproc.o
2002 Jul 08
1
addenda to wordperfect
I did find a say to get to the directory holding wpwin9 and it strarted
but then froze with the splash screen. Not sure how to get the error
message in here; seems to have to do with the keyboard and X11driver;
hope I am abusing this bulletin board, but I am hoping someone can help
me with the next step. Thanks
2001 Sep 24
1
Printing Central European characters
Dear R-users,
I have problems with printing Central European (CE) characters
(e.g. {\H o} and {\H u}) in graphics made by R.
After executing the following code I can see the CE characters with gv
on my screen, but I cannot print them on a postscript printer.
> postscript(file="proba.ps",enc="ISOLatin2.enc")
> plot(0:15,0:15,type="n")
&...
2010 Oct 06
3
Empty data frame does not maintain column type
Does anyone know why a data frame created with empty character columns
converts them to integer columns?
> df<-data.frame(a=character(0),b=character(0))
> df<-rbind(df,c("a","a"))
> typeof(df[1,1])
[1] "integer"
AsIs doesn't help:
> df<-data.frame(a=I(character(0)),b=I(character(0)))
> df<-rbind(df,I(c("a","a")))