search for: text4

Displaying 5 results from an estimated 5 matches for "text4".

Did you mean: text
2013 May 18
3
OT: Script Help
Sorry for the off topic, but don't a better resource. I'm not great at scripting, but need a quick script to modify a file. I have a long file that has lines like this: some text some text2 CN=DATA.OU=XYZ.O=CO some text3 some text4 And this repeats, but XYZ changes. "DATA" is always called data. (it's being renamed basically) I need to change the middle line but leave the rest of the file as is like this: some text some text2 CN=XYZ_DATA.OU=XYZ.O=CO some text3 some text4 Anyone know a quick way to do this?...
2007 Sep 12
0
Email Classified Send Over 100000-Pakistani BIZ Email Addresses
...} ..text1 { =09font-family: verdana; =09font-size: 10px; =09font-weight: normal; =09color: #000000; } ..text2 { =09font-family: verdana; =09font-size: 10px; =09font-weight: bold; =09color: #000000; } ..text3 { =09font-family: verdana; =09font-size: 10px; =09font-weight: bold; =09color: #FFFFFF; } ..text4 { =09font-family: verdana; =09font-size: 10px; =09font-weight: bold; =09color: #262425; } ..text5 { =09font-family: verdana; =09font-size: 10px; =09font-weight: normal; =09color: #FFFFFF; } ..text6 { =09font-family: verdana; =09font-size: 10px; =09font-weight: normal; =09color: #3E4A56; } ..brder {...
2009 Oct 20
1
plotting labels (not values) on xy plot
...) gives me the value of x. text(x,y, labels = labels(x)) gives me something like c("text1","text2"..) plotted for each point text(x,y, labels = names(x)) gives nothing print(x) gives me [,1] text1 0.000000000 text2 0.000000000 text3 -0.029027359 text4 -0.088602806 so how do 'text1' written rather than the value? I know there is a way but I am just guessing at the moment. Any pointers greatly appreciated. -- View this message in context: http://www.nabble.com/plotting-labels-%28not-values%29-on-xy-plot-tp25968696p25968696.html...
2008 Apr 06
1
buggy HTML from nested lists w/ paragraphs
...the blank lines or the final item, text13, is enough to kill either or both of the errors, while removal of other items kills one error or the other. (Removal of text8 kills neither, but I left it in case it's helpful for diagnosing the problem.) # text1 * text2 * text3 text4 ## text5 * text6 * text7 text8 ## text9 * text10 * text11 text12 text13 The versions of Markdown I'm running this through are version 1.0.1 of the Perl script from daringfireball, and whatever's included in MarsEdit 2.1.3(1404). Any ideas?
2005 Sep 08
1
Converting a matrix to a dataframe: how to prevent conversion to factor
...back using the as.is argument. write.table(MATRIX, "JUNK", row.names=F) NEWFRAME <- read.table("JUNK", as.is=T, header=T) > str(NEWFRAME) `data.frame': 4 obs. of 2 variables: $ TEXT : chr "Text1" "Text2" "Text3" "Text4" $ NUMBERS: int 14 13 12 11 This restores the NUMBERS to their intended mode (integers, not factors). The text column is also not read as a factor (not a problem for me). It appears that the function AsIs [I(x)] would enable me to accomplish this without the write/read steps. Howeve...