search for: abbreviate

Displaying 20 results from an estimated 1066 matches for "abbreviate".

Did you mean: abbreviated
2014 Jul 26
2
Concern: rsync failing to find some attributes in a file transfer?
...s --archive --hard-links --human-readable --no-inc-recursive --one-file-system --prune-empty-dirs --whole-file --xattrs ), "--compare-dest=$base_lvh->fs_mp/."); output of the program: Rsync with 9 excludes from config file... Missing abbreviated xattr value, trusted.SGI_ACL_DEFAULT, for "/home.diff/Bliss/Documents/law/Pictures/Artists" Missing abbreviated xattr value, trusted.SGI_ACL_DEFAULT, for "/home.diff/Bliss/Documents/law/Pictures/Avatars/Production" Missing abbreviated xattr value, trusted.SGI_ACL_DEFAULT, for...
2005 Apr 15
2
sipXphone
Maybe I just woke up too early today. I have SJPhone and X-Lite working perfectly but I cannot for the life of me get sipXphone working properly with Asterisk. Its probably something stupid on my part, but does anyone have a quick setup sheet for it? -Kerry -------------- next part -------------- An HTML attachment was scrubbed... URL:
2005 Apr 15
2
abbreviate or wrap dimname labels
For a variety of displays (mosaicplots, barplots, ...) one often wants to either abbreviate or wrap long labels, particularly when these are made up of several words. In general, it would be nice to have a function, abbreviate.or.wrap <- function(x, maxlength=10, maxlines=2, split=" ") { } that would take a character vector or a list of vectors, x, and try to abbreviate...
2009 Apr 18
1
bug in classesToAM()
Hi, I can't get the non-abbreviated class names of the rows and the cols of the Adjacency Matrix: setClass("ClassWithALongName") setClass("SubclassOfClassWithALongName", contains="ClassWithALongName") Trying all possible values for 'abbreviate' (with R-2.9.0): > classesToAM(&quot...
2009 Nov 10
6
getting the timezone name from an abbreviation
HI, I am creating n onlinecalendar sort of functionality for which the user input for events is taken. To make it user friendly, its left to the user to write the time down rather than selecting it from a datetime field in a form . The user can also specify a timezone. And while doing so its obvious that most inputs will be an abbreviation. My question is - is there a way to convert
2012 Jan 13
1
Change state names to abbreviations in an irregular list of names, abbreviations, null values, and foreign provinces
I'm trying to create maps of reptile abundance in different states & counties using data from Herp.net, which provides lists of specimens with the places that they were found. First I would like to parse the list by state using 2-letter abbreviations, since I'm focusing on certain regions. To do this, I've been trying to create a vector (state2) that gives all state names as
2005 Apr 11
6
How to change letters after space into capital letters
...c( "this is an element of the vector of strings", "second element" ) becomes: c( "This Is An Element Of The Vector Of Strings", "Second Element" ) My reason to try to do this is to get more readable abbreviations. (A suggestion would be to add an option to abbreviate() which changes letters after space to uppercase letters before executing the abbreviation algorithm.) Thanks - Wolfram
2002 Jun 19
1
new version of print.factor
Thanks to Tony Plate for letting me know what the abbreviate.arg option does. I think this could be made more flexible (I.e. =TRUE, =FALSE, =#, where # would be passed to the abbreviate min.length argument). But it follows the example I was given. "print.factor" <- function (x, quote = FALSE, max.levels=5, print.levels = {if (max.levels=...
2013 Jan 27
2
Unexpected behavior with abbreviation of an argument to paste
...uot;|") Result: [1] "TEXT1|TEXT2" However, abbreviating "collapse" by even one character: paste(c("TEXT1", "TEXT2"), collaps="|") yielded the following: [1] "TEXT1 |" "TEXT2 |" > My experience has been that one can abbreviate these options as long as there is no ambiguity. For example, the "ignore.case" argument for grep can be abbreviated to "ig" (shortening it to a single character creates an ambiguity). Is there something special about "collapse" that I am missing? Dennis Dennis Fish...
2010 Jun 30
1
vlmc - "In vlmc(traffic.clusters.stationary, cutoff = i) : alphabet with >1-letter strings; trying to abbreviate"
...he vlmc package. I am trying to model a time series, where each element can take one of 11 values (the result of some clustering). When I run the following command (synthetic data to facilitate self-contained example) I get the following warning: ("alphabet with >1-letter strings; trying to abbreviate") +++ START+++ > library(VLMC) > a <- floor(runif(1000,0,11)) > vc <- vlmc(a,cutoff=5) Warning message: In vlmc(a, cutoff = 5) : alphabet with >1-letter strings; trying to abbreviate > vc 'vlmc' a Variable Length Markov Chain; alphabet 'abcdefghijk', |...
2009 Mar 20
1
Getting a Time Zone abbreviation from the full name?
...f it, the user selects the time zone of the event from a drop-down list using the time_zone_select helper. This is stored in the events table as a string. Because of legacy data which is stored in UTC, I want to keep the dates and times in the table as UTC but when I display it, I want to show the abbreviated version of the time zone value as selected. For example, if the user created an event that starts on: 2009-05-01 10:30:00 UTC and they chose the time zone: "Mountain Time (US & Canada)" I want to be able to display it as: May 1st, 2009, 10:30 AM (MST) What I''m stuck with...
2005 Sep 07
2
Month recognition issue
...by R using as.Date function. I realized strangely that when I type > month.abb [1] "Jan" "Feb" "Mar" "Apr" "May" "Jun" "Jul" "Aug" "Sep" "Oct" [11] "Nov" "Dec" I get the abbreviated english version of every month > x <- c("1-jan-1960", "2-feb-1960", >"31-mar-1960", "30-apr-1960","2-may-1960", >"31-jun-1960", "30-jul-1960","2-aug-1960", >"31-sep-1960", "30-oct-196...
2007 Jan 24
1
Timezone abbreviation question
Is it possible to get timezone abbreviations using the TimeZone or TzinfoTimezone classes? Even after converting UTC to localtime it still reports the timezone abbreviation as UTC. Example: >> @tz = TzinfoTimezone.us_zones[2] => #<TzinfoTimezone:0x30868a0 @utc_offset=-28800, @name="Pacific Time (US & Canada)"> >> @tz.now => Wed Jan 24 12:36:56 UTC 2007
2006 Jul 13
1
writeForeignSAS and potential extensions
...s, validvarname = c("V7", "V6")){ + validvarname <- match.arg(validvarname) + nmax <- if(validvarname == "V7") 32 else 8 + x <- sub("^([0-9])", "_\\1", varnames) + x <- gsub("[^a-zA-Z0-9_]", "_", x) + x <- abbreviate(x, minlength = nmax) + + if (any(nchar(x) > nmax) || any(duplicated(x))) + stop("Cannot uniquely abbreviate the variable names to ", + nmax, " or fewer characters") + names(x) <- varnames + x +} + +make.SAS.formats <- function(varnames){ + x <- sub...
2009 Apr 08
1
Call Pickup Works w/Linksys ATA, not with Cisco 7940G
...has no PCI boards).<br> <br> *8 Call Pickup works fine from any of the phones connected using the Linksys SPA2102.<br> <br> *8 Call Pickup does not work from the Cisco 7940G phones (chan_sip.c:13977 handle_request_invite: Nothing to pick up for <a class="moz-txt-link-abbreviated" href="mailto:000d6556-eeb3001c-76b88543-7f51d8f8@192.168.0.211">000d6556-eeb3001c-76b88543-7f51d8f8@192.168.0.211</a>)<br> <br> What could the difference be?<br> <br> Below you will find:<br> &nbsp;(a) the "sip show peer nnn" for...
2005 Aug 07
1
get timezone abbreviation
This is probably more a Ruby than a rails question, but when I call the method strftime("%Z") on a Time object, it returns the full time zone name "Eastern Daylight Time". Is there a way to get the Abbreviation instead?
2015 Jan 23
2
[LLVMdev] Fwd: Bitcode abbreviations for something that's not a record
Hi all! Fuzzing llvm's bitcode reader, I found a problem where the reader assumes that the first field in an abbreviation will not be an array or a blob (and asserts otherwise). I don't know if this is expected (but not documented) or not. The documentation, to me, reads like it doesn't disallow it, but we might be assuming all abreviations start with a full record, which would make
2001 Mar 22
1
Use of abbreviations
Hi there, Here is my situation: > User NEWBIE!!!!! > version _ platform i386-pc-mingw32 arch x86 os Win32 system x86, Win32 status major 1 minor 2.2 year 2001 month 02 day 26 language R I wonder why. Given this data
2012 Oct 04
1
Synonyms of Abbreviations
Hello, I am looking for a documentation or an example to use the synonym function. I tried this db.add_synonym("omega","xapain"); and this works by adding the flag FLAG_AUTO_SYNONYMS. If i try to use the db.add_synonym("omega","xapain is search engine "); it fails why? Can xapian use synonym for Abbreviations like MBA => Master of business
2005 Sep 07
1
Language issue
...by R using as.Date function. I realized strangely that when I type > month.abb [1] "Jan" "Feb" "Mar" "Apr" "May" "Jun" "Jul" "Aug" "Sep" "Oct" [11] "Nov" "Dec" I get the abbreviated english version of every month > x <- c("1-jan-1960", "2-feb-1960", >"31-mar-1960", "30-apr-1960","2-may-1960", >"31-jun-1960", "30-jul-1960","2-aug-1960", >"31-sep-1960", "30-oct-196...