opdoc¶
-
dios.opdoc= "Options dictionary for module `dios`.\n\nUse like so: ``dios_options[OptsFields.X] = Opts.Y``.\n\n**Items**:\n * dios_repr: {'indexed', 'aligned'} default: 'indexed'\n dios default representation if:\n * `indexed`: show every column with its index\n * `aligned`: transform to pandas.DataFrame with indexed merged together.\n * disp_max_rows : int\n Maximum numbers of row before truncated to `disp_min_rows`\n in representation of DictOfSeries\n\n * disp_min_rows : int\n min rows to display if `max_rows` is exceeded\n\n * disp_max_vars : int\n Maximum numbers of columns before truncated representation\n\n * mixed_itype_policy : {'warn', 'err', 'ignore'}\n How to inform user about mixed Itype\n\nSee Also\n--------\n OptsFields: keys for the options dict \n Opts: values for the options dict \n\n"¶ str(object=’’) -> str str(bytes_or_buffer[, encoding[, errors]]) -> str
Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.__str__() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to ‘strict’.