How do you do data import in sas?



How do you do data import in sas?..

Answer / Nikita Singh

SAS reads data using PROC IMPORT or DATA step with INFILE statement. For example, to read a CSV file named 'data.csv', you can use: nn PROC IMPORT DATAFILE='data.csv' OUT=work.yourdataset DBMS=CSV;RUN; nOr in the DATA step:nn data yourdataset;n INFILE 'data.csv'n DSD;n INPUT col1 $ col2 num;n run;

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Data Science Interview Questions

How to create survival object in R?

1 Answers  


What is the difference between a bagged model and a boosted model?

1 Answers   WalMart,


What is data science?

1 Answers  


What are the roles and responsibilities of a data scientist?

1 Answers  


Why do you want to work as a data scientist?

1 Answers  


What is an outlier?

1 Answers  


Why L1 regularizations causes parameter sparsity whereas L2 regularization does not?

1 Answers  


What do you understand by l1 and l2 regularization methods?

1 Answers  


Which database is best for data science?

1 Answers  


Estimate the number of square feet pizza's eaten in US each year.

1 Answers   Goldman Sachs,


What is the k-means clustering method?

1 Answers  


What’s the difference between pip and pip3?

1 Answers  


Categories
  • AI Algorithms Interview Questions AI Algorithms (74)
  • AI Natural Language Processing Interview Questions AI Natural Language Processing (96)
  • AI Knowledge Representation Reasoning Interview Questions AI Knowledge Representation Reasoning (12)
  • AI Robotics Interview Questions AI Robotics (183)
  • AI Computer Vision Interview Questions AI Computer Vision (13)
  • AI Neural Networks Interview Questions AI Neural Networks (66)
  • AI Fuzzy Logic Interview Questions AI Fuzzy Logic (31)
  • AI Games Interview Questions AI Games (8)
  • AI Languages Interview Questions AI Languages (141)
  • AI Tools Interview Questions AI Tools (11)
  • AI Machine Learning Interview Questions AI Machine Learning (659)
  • Data Science Interview Questions Data Science (671)
  • Data Mining Interview Questions Data Mining (120)
  • AI Deep Learning Interview Questions AI Deep Learning (111)
  • Generative AI Interview Questions Generative AI (153)
  • AI Frameworks Libraries Interview Questions AI Frameworks Libraries (197)
  • AI Ethics Safety Interview Questions AI Ethics Safety (100)
  • AI Applications Interview Questions AI Applications (427)
  • AI General Interview Questions AI General (197)
  • AI AllOther Interview Questions AI AllOther (6)