You data may still be physically on the disk, but only if Ubuntu haven't actually used the partition as a swap area (if you did not turn the swapping off yet, you need to do this right now although it may already be too late).
When creating a swap area, mkswap command does not actually format or erase the partition, however, it does erase the first block of the partition to make any previous filesystem invisible, and then it writes a swap header (see man mkswap) - which, in total, overrides the first 4096 bytes of the partition.
A useful question: http://superuser.com/questions/172724/what-file-system-is-swap-on-linux
My reading suggests that NTFS header is 16 sectors (8192 bytes) long, so you've only zapped a half of it. Moreover,
When you format an NTFS volume, the format program allocates the first
16 sectors for the $Boot metadata file. First sector, in fact, is a
boot sector with a "bootstrap" code and the following 15 sectors are
the boot sector's IPL (initial program loader). To increase file
system reliability the very last sector an NTFS partition contains a
spare copy of the boot sector.
So, basically, you need to somehow copy the last sector of the partition into the very first sector and that should allow OS to see the partition. It won't be bootable, but the data should be accessible.
Googling for "NTFS restore boot sector" finds a program called TestDisk which claims to be able to do what you need.
There's also software called Photorec which can recover files from a damaged partition by scanning the partition and looking for file signatures. It can recover data even from a partition which cannot be accessed by the OS.