UNIX User Data
This file contains 9 sets of sanitized user data drawn from the command histories of 8 UNIX computer users at Purdue over the course of up to 2 years.
Dataset Characteristics
Text, Sequential
Subject Area
Computer Science
Associated Tasks
-
Feature Type
-
# Instances
-
# Features
-
Dataset Information
Additional Information
This file contains 9 sets of sanitized user data drawn from the command histories of 8 UNIX computer users at Purdue over the course of up to 2 years (USER0 and USER1 were generated by the same person, working on different platforms and different projects). The data is drawn from tcsh(1) history files and has been parsed and sanitized to remove filenames, user names, directory structures, web addresses, host names, and other possibly identifying items. Command names, flags, and shell metacharacters have been preserved. Additionally, **SOF** and **EOF** tokens have been inserted at the start and end of shell sessions, respectively. Sessions are concatenated by date order and tokens appear in the order issued within the shell session, but no timestamps are included in this data. For example, the two sessions: <pre> # Start session 1 cd ~/private/docs ls -laF | more cat foo.txt bar.txt zorch.txt > somewhere exit # End session 1 # Start session 2 cd ~/games/ xquake & fg vi scores.txt mailx john_doe@somewhere.com exit # End session 2 </pre> would be represented by the token stream <pre> **SOF** cd <1> # one "file name" argument ls -laF | more cat <3> # three "file" arguments > <1> exit **EOF** **SOF** cd <1> xquake & fg vi <1> mailx <1> exit **EOF** </pre>
Has Missing Values?
No
Dataset Files
File | Size |
---|---|
UNIX_user_data.tar.gz | 159.3 KB |
README | 1.9 KB |
UNIX_user_data.html | 794 Bytes |
Reviews
There are no reviews for this dataset yet.
pip install ucimlrepo
from ucimlrepo import fetch_ucirepo # fetch dataset unix_user_data = fetch_ucirepo(id=141) # data (as pandas dataframes) X = unix_user_data.data.features y = unix_user_data.data.targets # metadata print(unix_user_data.metadata) # variable information print(unix_user_data.variables)
Lane, T. UNIX User Data [Dataset]. UCI Machine Learning Repository. https://doi.org/10.24432/C5302K.
Creators
Terran Lane
DOI
License
This dataset is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license.
This allows for the sharing and adaptation of the datasets for any purpose, provided that the appropriate credit is given.