Tente:
$ awk '$4 >= 25 {print $1,$4}' file
Fashion: 27.729519791085
Food: 101.729519791085
Networking: [Test] => 10.729519791085
GAMES: [Real] => 10
Fashion: [Test] => 27.729519791085
Movies: [Real] => 5
Food: [Test] => 101.729519791085
Sports: [Real] => 7
Como imprimir a 1ª e 4ª variáveis se o valor for maior ou igual a 25.
Tente:
$ awk '$4 >= 25 {print $1,$4}' file
Fashion: 27.729519791085
Food: 101.729519791085
Tags awk