Problem
Running the PISA tool throws this error
Solution
Correct the typos in the compute.ksh
script as shown below. The “./” is missing for several lines for the block eaftests and ranktests.
eaftests)
if [[ $2 < $3 ]] ; then
cd attainment_$os ;
./eaf -i ../tests/tmp ../tests/$4_$2_norm.$5 ../tests/$4_$3_norm.$5 > ../tests/dump ;
./eaf-test ../tests/tmp > ../tests/$4_$2_$3_eaftest.$5 ;
rm ../tests/dump ;
rm ../tests/tmp ;
cd .. ;
fi
;;
ranktests)
if [[ $2 < $3 ]] ; then
cd indicators_$os ;
./dominance-rank ../tests/$4_$2_norm.$5 ../tests/$4_$3_norm.$5 ../tests/dump > ../tests/tmp ;
cd ../statistics_$os ;
./mann-whit ../tests/tmp emptyparam.txt ../tests/$4_$2_$3_ranktest.$5 ;
rm ../tests/dump ;
rm ../tests/tmp ;
cd .. ;
Pingback: Notes on some tools in PISA - Fivyex's Blog