This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # -*- coding: utf-8 -*- | |
| """ | |
| Created on Thu Jan 10 15:14:02 2013 | |
| @author: daniel.vianna | |
| """ | |
| from copy import deepcopy | |
| from xlwt import Worksheet | |
| import numpy as np | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | """ | |
| #ws argument is a xlwt worksheet object, as in: | |
| from xlwt import Workbook | |
| wb = Workbook() | |
| ws = wb.add.sheet('sheet 1') | |
| # Example of how to wrap xlwt.Style object | |
| conv = pd.io.parsers.CellStyleConverter() | 
NewerOlder