search for: here2

Displaying 6 results from an estimated 6 matches for "here2".

Did you mean: here
2009 Oct 08
2
how do I name data frames and files according to the index of a for loop?
...csv files that I can then manipulate. In order to do so, I would like to name the data frames and/or files by their respective index, to get: Data_frame_name1 Data_frame_name2 Data_frame_name3 ... Data_frame_name2858 I would also like to produce the .csv files: ~/file/goes/here1.csv ~/file/goes/here2.csv ~/file/goes/here3.csv ... ~/file/goes/here2858.csv I've been noodling over this for a while and have looked all over but I can't seem to get the syntax right. Any help at all would be appreciated. Thanks again! -Ken Ervin
2020 Sep 11
4
Garbage collection of seemingly PROTECTed pairlist
...the error occurs int *row_int = INTEGER(row); if (row_int[0] == last + 1) { Rprintf("here1"); SEXP next = PROTECT(Rf_list1(row)); prlst_tail = SETCDR(prlst_tail, next); last = row_int[1]; UNPROTECT(1); ++row_num; } else { Rprintf("here2"); SEXP next_car = PROTECT(C_make_len2_int_vec(last + 1, row_int[0] - 1)); SEXP next = PROTECT(Rf_list1(next_car)); prlst_tail = SETCDR(prlst_tail, next); last = row_int[0] - 1; UNPROTECT(2); } UNPROTECT(1); } SEXP out = PROTECT(Rf_PairToVectorList(prl...
2010 Jan 09
4
parsing pdf files
I have a pdf file that I would like to parse into R: http://www.williams.edu/Registrar/geninfo/faculty.pdf For now, I open the file in Acrobat by hand, then save it "as text" and then use readLines(). That works fine but a) I am concerned that some information may be lost and b) I may be doing this a lot, so I would rather have R grab the information from the pdf file directly. So: is
2009 Apr 23
1
BLINDTRANSFER and SIP hardphones
...RILY message coming in. Is there a work around or something obvious I'm missing (it's the first time I'm playing with Dialplan transfert features. context mylocal { 7530 => { NoOp(Here1 ${BLINDTRANSFER}); Dial(SIP/7530,); NoOp(Here2 ${BLINDTRANSFER}); }; 7531 => { NoOp(Here3 ${BLINDTRANSFER}); Dial(SIP/7531); NoOp(Here4 ${BLINDTRANSFER}); }; }; Regards -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium....
2020 Sep 12
0
Garbage collection of seemingly PROTECTed pairlist
...ow); > if (row_int[0] == last + 1) { > Rprintf("here1"); > SEXP next = PROTECT(Rf_list1(row)); > prlst_tail = SETCDR(prlst_tail, next); > last = row_int[1]; > UNPROTECT(1); > ++row_num; > } else { > Rprintf("here2"); > SEXP next_car = PROTECT(C_make_len2_int_vec(last + 1, row_int[0] - > 1)); > SEXP next = PROTECT(Rf_list1(next_car)); > prlst_tail = SETCDR(prlst_tail, next); > last = row_int[0] - 1; > UNPROTECT(2); > } > UNPROTECT(1); > }...
2004 Aug 19
28
Documents, Views and DocManagers
Hi, Are there any effort in making wxDocument, wxView, etc types of classes avaiable under wxRuby? For supporting SDI/MDI architecture. Cheers, Phuah Yee Keat