MikeTheTech.com
  • 🏠Mike Rodriguez (MikeTheTech)
  • 🤓About Me
    • Work Experience
    • Education
    • Certifications
    • Client Projects
      • Collaborations
    • Public Speaking
    • Contact / Hire Me
  • ❤️Community
    • YouTube
    • Discord
  • 🎮Games
    • StreamSavers
      • Instructions
      • Changelog
      • Credits
    • Polygone
      • Story
      • Maps
      • Characters
      • Items / Mechanics
      • Weapons
      • Controls
      • Changelog
        • 23.5.6 - Perks! Character Classes! New Machines! Explosives!
        • 23.5.1 - "The Overseer" Update!
        • 23.3.31 - UI, Lobby, Traps/Doors, Achievement System, etc.
        • 23.3.24 - Maps, Buy Zones, Crates, etc.
      • Credits
    • Rite of Eris
  • 📘Courses and Products
    • eDynamicLearning
    • GameDev.tv
    • TeachersPayTeachers
    • Pre-Made Workshops
    • Manning Publications
  • 🖥️Projects
    • Game Development
      • StreamSavers
      • Polygone
      • AI-RPG
      • The Hacker's Toolkit
      • Paragon Tournament
        • Changelog
      • "Shipment" (UE5)
      • MBARI Underwater Rover (UE5)
      • ScreenSaver XP
      • 3D Dice Roller
      • Tankz: You're Welcome
      • Guardians of Dale
      • Box2D Space Shooter (GMS2)
      • Top-Down Shooter Project (GameSalad)
    • Artificial Intelligence
      • LessonGPT (GPT-4)
      • AI-RPG (GPT-4)
      • ChatGPT Completion (GPT-3)
      • LangChain CSV (GPT-3)
      • LangChain Doc (GPT-3)
      • PHilliP (AIML)
      • WinDebbie (AIML)
    • Software Development
      • Virtual Display Driver
      • Display Preview App
      • ARImpact
      • Virtual Studio Live
      • Virtual Studio Tour
      • Video Tools
      • Kinect Virtual Green Screen
      • Blue Box
      • LFGos
      • Tech Helper
      • Educational Site Loader
    • Older Projects
      • FireTabs
      • Guitar Tab Archive
      • SalinasRadio
      • MyPowerTabs
    • Content
      • Well Unknown
      • Salinas News
  • 📝Blog
    • Tutorial: Using the new Terrain Tool in Unity 2019.1+
    • TSV Sample Files
  • Privacy Policy
Powered by GitBook
On this page
  1. Blog

TSV Sample Files

TSV File Definition (Wikipedia):

PreviousTutorial: Using the new Terrain Tool in Unity 2019.1+NextPrivacy Policy

Last updated 2 years ago

A tab-separated values (TSV) file is a simple text format for storing data in a tabular structure, e.g., database table or spreadsheet data, and a way of exchanging information between databases. Each record in the table is one line of the text file. Each field value of a record is separated from the next by a tab character. The TSV format is thus a type of the more general delimiter-separated values format.

TSV is a simple file format that is widely supported, so it is often used in data exchange to move tabular data between different computer programs that support the format. For example, a TSV file might be used to transfer information from a database program to a spreadsheet.

TSV is an alternative to the common comma-separated values (CSV) format, which often causes difficulties because of the need to escape commas – literal commas are very common in text data, but literal tab stops are infrequent in running text. The IANA standard for TSV achieves simplicity by simply disallowing tabs within fields.

Licensing:

The computer code and data files described and made available on this web page are distributed under

Sample Files:

These files were converted from open source comma delimited CSV files into the tab delimited TSV/text file.

  • , Major League Baseball Players: Name, Team, Position, height (inches), weight (pounds), age (years). 1034 records, each with six values. There is also an initial header line. (csv , GNU LGPL)

  • , Major League Baseball 2012 Season: Team, Payroll(millions), Wins. 30 records, each with 3 values. There is also an initial header line. (csv , GNU LGPL)

  • , Rotten Tomato ratings of movies with Robert De Niro. There are 87 records. Each record has Year, Rating, Title. There is also an initial header line. (csv , GNU LGPL)

  • , height and weight for 200 individuals Each record includes 3 values: index, height (inches), weight (pounds). There is also an initial header line. (csv , GNU LGPL)

📝
the GNU LGPL license.
mlb_players.tsv
source
mlb_teams_2012.tsv
source
deniro.tsv
source
hw_200.tsv
source