Help for this page

Select Code to Download


  1. or download this
    ### First I read from database.
    
    ...
    @rawdata=<DAT>;
    close(DAT); 
    chomp @rawdata;  ## <<-- add this line here
    
  2. or download this
    ###  Then I overwrite mixed.data with
    
    ...
    open(O, ">$data_path"); 
    print O @scale;    ## <<-- don't use 'join "\n",...'
    close(O);