About 911,000 results
Open links in new tab
  1. python - How to open a .data file extension - Stack Overflow

    I am working on side stuff where the data provided is in a .data file. How do I open a .data file to see what the data looks like and also how do I read from a .data file programmatically through p...

  2. Reading .data file using Pandas - Stack Overflow

    Jan 18, 2020 · A DATA file is a data file used by Analysis Studio, a statistical analysis and data mining program. It contains mined data in a plain text, tab-delimited format, including an Analysis Studio file …

  3. How to read .rdata file in R - Stack Overflow

    Oct 31, 2020 · 2 Just semove the df <- in your code. load() will load all the objects contained in the .RData file. This can be multiple variables and dataframes with various names, so you do not need to …

  4. BCP error "Unable to open BCP host data-file" - Stack Overflow

    The file is already open by some other app. (close the other app to release the file) For 1) and 2) - remember that paths are relative to where bcp is executing.

  5. sql - Unable to open BCP host data-file - Stack Overflow

    If your code is writing the data file, and then reading it with BCP, make sure that you CLOSE THE DATA FILE before trying to read it! Failure to do so gives: 'Unable to open host data-file'.

  6. r - How to see data from .RData file? - Stack Overflow

    Sep 1, 2011 · You can also import the data via the "Import Dataset" tab in RStudio, under "global environment." Use the text data option in the drop down list and select your .RData file from the folder.

  7. Using "with open() as file" method, how to write more than once?

    18 The w flag means "open for writing and truncate the file"; you'd probably want to open the file with the a flag which means "open the file for appending". Also, it seems that you're using Python 2. You …

  8. database - How to open this .DB file? - Stack Overflow

    The other thing to try is if you have access to the program that generated this file, there may be DLL's or EXE's from the database software that may contain meta information about the dll's creator which …

  9. Open database files (.db) using python - Stack Overflow

    Jun 12, 2020 · I have a data base file .db in SQLite3 format and I was attempting to open it to look at the data inside it. Below is my attempt to code using python. import sqlite3 # Create a SQL connec...

  10. Read files with extension .data into R - Stack Overflow

    Dec 6, 2015 · 6 From your link: The data is in an ASCII file. Attributes are separated by TAB. Thus you need to use read.table() with sep = "\t"