Пример #1
0
    def write_to_xlsx(self, path, **kwargs):
        """
        This will export the data in XCN format to an xlsx file at the specified path.

        Parameters
        ----------
        path : str
            The file path of the xlsx file to be written
        kwargs
            Keyword arguments passed directly to pandas
        """
        write_df_to_xlsx(df=self.__df, path=path, **kwargs)
Пример #2
0
 def write_to_xlsx(self, path, **kwargs):
     write_df_to_xlsx(df=self.__df, path=path, **kwargs)