Hi,
After file imported, you need to add a column, and put the value of log (y) in the new column, then plot the graph. To achieve it, you can add a few lines of script in your import filter:
nn = wks.nCols; //Get the number of columns
wks.nCols = nn + 1; // Add a column in worksheet
col($(nn+1)) = log(col(2)); // Calculate the log value of column B
plotxy iy:=(1,$(nn+1)); //Plot x vs log(y)
Hope it helps.
Regards,
Yuki
OriginLab