May 27, 2005 #1 Graziella Programmer Jul 8, 2004 38 AT Hi, Code: $f-measure = (2 * $recall * $precision) / ($recall + $precision); gives me the following error message: Can't modify substraction (-) in scalar assignment at line (the one above) near ");" This is insane: why doens;t this work ?! Grazia
Hi, Code: $f-measure = (2 * $recall * $precision) / ($recall + $precision); gives me the following error message: Can't modify substraction (-) in scalar assignment at line (the one above) near ");" This is insane: why doens;t this work ?! Grazia
May 27, 2005 #2 azzazzello Technical User Jan 25, 2005 297 US it's interpreting is as $f minus measure. Try using $f_measure (with an underscore) instead. Upvote 0 Downvote
May 27, 2005 Thread starter #3 Graziella Programmer Jul 8, 2004 38 AT Thank you, How silly on my part not to see that ! I guess it is time for a break. Grazia Upvote 0 Downvote