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"
-- Attribute lines: For example, '35,9 no no yes yes yes yes no' Where: '35,9' Temperature of patient 'no' Occurrence of nausea
'no' Lumbar pain 'yes' Urine pushing (continuous need for urination)
'yes' Micturition pains 'yes' Burning of urethra, itch, swelling of
urethra outlet 'yes' decision: Inflammation of urinary bladder
'no' decision: Nephritis of renal pelvis origin
Also looks like it uses a comma for the decimal, so also specify dec = ","
inside read.table()
.
It looks like you'll need to put in the column headings manually, though your link defines them.
Make sure you see @Gavin Simpson's comment below to clean up other undocumented "features" of this dataset.