Используйте Excel для вставки введенных данных в cplex (бета-версия для MAC)

#excel #input #cplex

#excel #ввод #cplex

Вопрос:

Мне нужно использовать Excel для загрузки входных файлов в cplex, так как это самый простой способ для меня. Проблема в том, что это выдает ошибку. Как я могу решить? Моя версия CPLEX — 21.1.0.0Beta_1, и у меня последняя версия Excel. У вас есть какие-либо советы?

Ответ №1:

SheetRead и SheetWrite в OPL CPLEX работают в Windows.

На других платформах вы можете полагаться на внешние вызовы python, как описано в OPL и Excel

 // Read from an Excel spreadsheet without SheetRead
// which means you can use this on non Windows platform

execute
    {

    function read_excel(filename,sheetname,skiprows,nrows,cols,datfilename,resname)
    {
        var quote=""";
        
        var python=new IloOplOutputFile("c:\temp\readexcel.py");
        
        python.writeln("import pandas as pd");
        python.writeln("import xlrd");
        python.writeln("df=pd.read_excel('" filename "'" ",sheet_name = '" sheetname "'" 
        ",skiprows = " skiprows   ",nrows= " nrows  ","
         "header=None,usecols = '" cols "')");
        python.writeln("print(df)");
        
        
        
        python.writeln("res = open(",quote,datfilename,quote,",",quote,"w",quote,")");
        python.writeln("res.write(",quote,resname,"=[",quote,")");
        python.writeln("res.write(",quote,"\","n",quote,")");
        python.writeln("for i, row in enumerate(df.values):");
       
        python.writeln("   res.write(",quote,"[",quote,")");
        
        python.writeln("   for j in row:");
       
        python.writeln("      if (j==j):");
        python.writeln("         res.write(str(j))");
        python.writeln("         res.write(",")");
       
        python.writeln("   res.write("],")    ");
        python.writeln("   res.write(",quote,"\","n",quote,")");
        python.writeln("res.write("];")");
        python.writeln("res.close()");
        python.close();
       
        python.close();
        
        IloOplExec("C:\Python36\python.exe c:\temp\readexcel.py",true);
        
    }
    read_excel("c:\\temp\\read2Darray.xls","Sheet1",0,2,"B:D","c:\\temp\\resexcel","res");
}    
/*
which gives in res.txt
res=[
[5,6,7,],
[8,9,10,],
];
*/