Question

In: Statistics and Probability

Why do I keep getting the error "More columns than column names" when trying to import...

Why do I keep getting the error "More columns than column names" when trying to import the following data into R Studio?:

PRICE   YEARSOLD   MILES   COLOR   TITLESTATUS   TRANSMISSION  
4500   11   170000   SILVER   CLEAN   MANUAL          
34590   1   2000   SILVER   CLEAN   AUTOMATIC  
4500   14   203000   SILVER   CLEAN   AUTOMATIC  
11990   6   53337   GRAY   CLEAN   AUTOMATIC  
10490   8   36543   RED   CLEAN   AUTOMATIC  
2800   19   208000   SILVER   CLEAN   MANUAL      
1200   19   244000   SILVER   CLEAN   AUTOMATIC  
2500   19   208000   BROWN   CLEAN   AUTOMATIC  
2000   15   190000   GREEN   CLEAN   AUTOMATIC  
39990   3   31252   RED   CLEAN   AUTOMATIC  
16590   3   31644   BLUE   CLEAN   AUTOMATIC  
9300   2   65000   WHITE   SALVAGE   AUTOMATIC  
1800   17   190000   BLACK   CLEAN   AUTOMATIC  
16900   49   27000   GREEN   CLEAN   MANUAL  
14900   62   1000   GREEN   CLEAN   MANUAL  
16900   38   91000   BROWN   CLEAN   MANUAL  
15900   40   106229   SILVER   CLEAN   AUTOMATIC  
15900   46   20000   GRAY   CLEAN   MANUAL  
29900   19   47000   WHITE   CLEAN   MANUAL  
9900   59   4200   GREEN   CLEAN   MANUAL  
14900   13   98843   BLACK   CLEAN   AUTOMATIC  
13900   44   82000   GREEN   CLEAN   MANUAL  
32900   29   134800   WHITE   CLEAN   MANUAL  
21721   7   100071   BLACK   CLEAN   AUTOMATIC  
19900   54   5000   BLUE   CLEAN   AUTOMATIC  
18900   44   78149   BROWN   CLEAN   MANUAL  
35900   26   105000   GRAY   CLEAN   MANUAL  
34162   2   26649   SILVER   CLEAN   AUTOMATIC  
12967   3   20083   WHITE   CLEAN   AUTOMATIC  
29900   26   134000   WHITE   CLEAN   MANUAL  
11900   68   33000   GREEN   CLEAN   MANUAL  
19174   2   21780   SILVER   CLEAN   AUTOMATIC  
16429   3   25690   BLACK   CLEAN   AUTOMATIC  
53095   2   25320   WHITE   CLEAN   AUTOMATIC  
27900   33   67000   BLUE   CLEAN   MANUAL  
16401   1   32756   BLACK   CLEAN   AUTOMATIC  
16900   40   30000   SILVER   CLEAN   MANUAL  
10179   5   56000   ORANGE   CLEAN   AUTOMATIC  
34900   42   5000   BLUE   CLEAN   MANUAL
51900   57   100   BURGUNDY   CLEAN   MANUAL
  


Solutions

Expert Solution

We are getting this error because there is blank space after last column.

We can rectify this by using this Code


Related Solutions

HI. I have been trying to run my code but I keep getting the following error....
HI. I have been trying to run my code but I keep getting the following error. I can't figure out what I'm doing wrong. I also tried to use else if to run the area of the other shapes but it gave me an error and I created the private method. Exception in thread "main" java.util.InputMismatchException at java.base/java.util.Scanner.throwFor(Scanner.java:939) at java.base/java.util.Scanner.next(Scanner.java:1594) at java.base/java.util.Scanner.nextInt(Scanner.java:2258) at java.base/java.util.Scanner.nextInt(Scanner.java:2212) at project2.areacalculation.main(areacalculation.java:26) My code is below package project2; import java.util.Scanner; public class areacalculation { private static...
I don't know why I keep getting the following error: AttributeError: 'tuple' object has no attribute...
I don't know why I keep getting the following error: AttributeError: 'tuple' object has no attribute 'size' I am using python in Anaconda. import numpy as np def information_gain(x_array, y_array): parent_entropy = entropy(x_array) split_dict = split(y_array) for val in split_dict.values(): freq = val.size / x_array.size child_entropy = entropy([x_array[i] for i in val]) parent_entropy -= child_entropy* freq return parent_entropy x = np.array([0, 1, 0, 1, 0, 1]) y = np.array([0, 1, 0, 1, 1, 1]) print(round(information_gain(x, y), 4)) x = np.array([0,...
Syntax error in C. I am not familiar with C at all and I keep getting...
Syntax error in C. I am not familiar with C at all and I keep getting this one error "c error expected identifier or '(' before } token" Please show me where I made the error. The error is said to be on the very last line, so the very last bracket #include #include #include #include   int main(int argc, char*_argv[]) {     int input;     if (argc < 2)     {         input = promptUserInput();     }     else     {         input = (int)strtol(_argv[1],NULL, 10);     }     printResult(input);...
My code works in eclipse, but not in Zybooks. I keep getting this error. Exception in...
My code works in eclipse, but not in Zybooks. I keep getting this error. Exception in thread "main" java.util.NoSuchElementException at java.base/java.util.Scanner.throwFor(Scanner.java:937) at java.base/java.util.Scanner.next(Scanner.java:1478) at Main.main(Main.java:34) Your output Welcome to the food festival! Would you like to place an order? Expected output This test case should produce no output in java import java.util.Scanner; public class Main {    public static void display(String menu[])    {        for(int i=0; i<menu.length; i++)        {            System.out.println (i + " - " + menu[i]);...
I keep getting the same error Error Code: 1822. Failed to add the foreign key constraint....
I keep getting the same error Error Code: 1822. Failed to add the foreign key constraint. Missing index for constraint 'test_ibfk_5' in the referenced table 'appointment', can you please tell me what is wrong with my code: -- Table III: Appointment = (site_name [fk7], date, time) -- fk7: site_name -> Site.site_name DROP TABLE IF EXISTS appointment; CREATE TABLE appointment (    appt_site VARCHAR(100) NOT NULL, appt_date DATE NOT NULL, appt_time TIME NOT NULL, PRIMARY KEY (appt_date, appt_time), FOREIGN KEY (appt_site)...
I keep getting an error that I cannot figure out with the below VS2019 windows forms...
I keep getting an error that I cannot figure out with the below VS2019 windows forms .net framework windows forms error CS0029 C# Cannot implicitly convert type 'bool' to 'string' It appears to be this that is causing the issue string id; while (id = sr.ReadLine() != null) using System; using System.Collections.Generic; using System.IO; using System.Windows.Forms; namespace Dropbox13 { public partial class SearchForm : Form { private List allStudent = new List(); public SearchForm() { InitializeComponent(); } private void SearchForm_Load(object...
I am making a html game with phaser 3 I keep getting an error at line...
I am making a html game with phaser 3 I keep getting an error at line 53 of this code (expected ;) I have marked the line that needs to be fixed. whenever I add ; my whole code crashes const { Phaser } = require("./phaser.min"); var game; var gameOptions = {     tileSize: 200,     tileSpacing: 20,     boardSize: {     rows: 4,     cols: 4     }    }    window.onload = function() {     var gameConfig = {         width: gameOptions.boardSize.cols * (gameOptions.tileSize +             gameOptions.tileSpacing) + gameOptions.tileSpacing,...
I do not know why I keep getting this question wrong, I triple checked my work!...
I do not know why I keep getting this question wrong, I triple checked my work! A distribution of values is normal with a mean of 80 and a standard deviation of 18. From this distribution, you are drawing samples of size 23. Find the interval containing the middle-most 40% of sample means: ANSWER HERE Enter your answer using interval notation. In this context, either inclusive or exclusive intervals would be acceptable. Your numbers should be accurate to 1 decimal...
I keep getting this error "LetterDemo.cs(21,14): error CS1519: Unexpected symbol `string' in class, struct, or interface...
I keep getting this error "LetterDemo.cs(21,14): error CS1519: Unexpected symbol `string' in class, struct, or interface member declaration" Can someone please help me. Here is my code: using static System.Console; class LetterDemo {    static void Main()    {      Letter letter1 = new Letter();      CertifiedLetter letter2 = new CertifiedLetter();      letter1.Name = "Electric Company";      letter1.Date = "02/14/18";      letter2.Name = "Howe and Morris, LLC";      letter2.Date = "04/01/2019";      letter2.TrackingNumber = "i2YD45";      WriteLine(letter1.ToString());      WriteLine(letter2.ToString() +       " Tracking number: " + letter2.TrackingNumber);    } } class Letter {...
In java, I keep getting the error below and I can't figure out what i'm doing...
In java, I keep getting the error below and I can't figure out what i'm doing wrong. Any help would be appreciated. 207: error: not a statement allocationMatrix[i][j];
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT