search for: my_docu

Displaying 4 results from an estimated 4 matches for "my_docu".

Did you mean: mydocu
2011 Feb 18
2
R script HELP!
...o assess ICESat data..perhaps it is the ID_min or ID_max that is wrong? I don't know, any help would be greatly appreciated :( # OPTIONS - CHANGE THESE VARIABLES IF NEEDED\par ######################################################################\par \par icesatfile <- 'C:/Users/Whiz/My_Documents/Year3/GY3072/ICESat_GLAS/IDLreadGLASWF/out_wf_GLA01_09030918_r5947_031_L2E.dat'\par \par plotdir <- 'C:/Users/Whiz/My_Documents/Year3/GY3072/ICESat_GLAS/PLOT'\par \par \par \par ID_min <- 976834501 290018099.3145 1000 #231741042 # specify range of waveforms to be plotted, -1...
2009 Jan 26
0
Help with sas.get
...ld really appreciate if a user experienced with this function could provide some guidance. Thank you Working environment: R 2.8.1 is installed on linux machines with the most recent version of the Hmisc package; SAS 9 runs on a Solaris based system. ### Code mypath <- "/home/sbihorel/my_documents/Testing_env/SAS_dataset_R_import" mydf <- sas.get(library=mypath,member="test") ### Error message Error in sas.get(library = mypath, member = "test") : SAS output files not found In addition: Warning message: In sas.get(library = mypath, member = "test&quo...
2007 Oct 25
0
Can't use ruby-rtf gem
...which contains this: require ''rubygems'' require ''rtf'' include RTF document = Document.new(Font.new(Font::ROMAN, ''Times New Roman'')) document.paragraph << "This is a short paragraph of text." File.open(''my_document.rtf'') {|file| file.write(document.to_rtf)} and then run it with "ruby rtf.rb", and get this: ./rtf.rb:3: uninitialized constant RTF (NameError) from C:/ror/InstantRails/ruby/lib/ruby/site_ruby/1.8/rubygems/ custom_require.rb:27:in `gem_original_require''...
2010 Oct 31
0
Loading xml document using Nokogiri and retrieving CDATA element
This is an extension of my last post (problems with REXML) which has me looking to Nokogiri again. The reason I am not using Nokogiri is I can not seem to find a way to get CDATA out of a Nokogiri document. First, can you tell me if I am loading my document correctly, because when I call my_document.to_xml, I only get one line back: (rdb:1) test_file = Nokogiri::XML(mismo_xml_file) #<Nokogiri::XML::Document:0x5dd22 name="document"> (rdb:1) test_file.to_xml "<?xml version=\"1.0\"?>\n" So maybe this is the first step and if I get the full doc to lo...