Having issues with loading my file.

This is the code I created with help from my tutor who is now unavailable. ___________________________________________________________________ /* Import the dataset */ proc import datafile=’winequality-red.csv’ out=wine_data dbms=csv replace; run; /* Preprocess the data */ proc standard data=wine_data mean=0 std=1 out=wine_normalized; var _numeric_; run; /* Split the data */ proc surveyselect data=wine_normalized out=train_sample method=srs rate=0.8 outall; run; data train_data; set train_sample; if Selected=1; run; data test_data; set train_sample; if Selected=0; run; /* Perform k-NN analysis */ proc discrim data=train_data test=test_data method=npar k=1; class Quality; var _numeric_; ods select ClassificationPlot; run; ______________________________________________________________________ This is the output file This is the file location and details. I am getting the below error. I renamed the file and still its giving me this. I removed the –

Having issues with loading my file.

We offer the best custom writing paper services. We have answered this question before and we can also do it for you.

GET STARTED TODAY AND GET A 20% DISCOUNT coupon code DISC20

Why Choose Us

  • 100% non-plagiarized Papers
  • 24/7 /365 Service Available
  • Affordable Prices
  • Any Paper, Urgency, and Subject
  • Will complete your papers in 6 hours
  • On-time Delivery
  • Money-back and Privacy guarantees
  • Unlimited Amendments upon request
  • Satisfaction guarantee

How it Works

  • Click on the “Place Order” tab at the top menu or “Order Now” icon at the bottom and a new page will appear with an order form to be filled.
  • Fill in your paper’s requirements in the "PAPER DETAILS" section.
  • Fill in your paper’s academic level, deadline, and the required number of pages from the drop-down menus.
  • Click “CREATE ACCOUNT & SIGN IN” to enter your registration details and get an account with us for record-keeping and then, click on “PROCEED TO CHECKOUT” at the bottom of the page.
  • From there, the payment sections will show, follow the guided payment process and your order will be available for our writing team to work on it.