You have to create another tileset that has the tilesize equal to the size you want your player sprite.
(If your tiles are 32x32, make the new tileset 32x64 to make the player twice as tall. do this in "tilesets") Then draw you playersprite and change the tiles in his sprite template. do this in "sprites and paths"
I would only recommend having the player at most two times as big as the tilesize in any dimension (wide or tall), although having him the same size as the tiles is ideal for reason i'll explain below.
There can be some problems that show up from having different sized tiles as player sprite, this is mainly due to how tile solidity is processed. The entire player sprite (or any sprite) does not see solid tiles as solid, only the 4 corners of the sprite react to solidity. So, if a large playersprie jumped at a thin platform, he could hit the platform head on, but still go through it because none of the corners of him touched the platform. This problem is corrected if all platforms are 2 tiles high. If your sprite is 3 tiles high, you platforms need to be that tall as well.
hope that helps