in my Sas studio i imported csv files into a new folder and i created from csv tables of other SAS by using proc procedure .
now i have to create library that is assigned automatically. When i type libname mylib "path of folder" it works but the library is empty
any help please?
Please post the code you are using to create the library and to add tables to it.
Try this:
Libname mylib "/home/u58228061/my_project"; PROC IMPORT DATAFILE="/home/u58228061/my_project/country_classification.csv" DBMS=CSV OUT= mylib.country_classification; RUN; PROC IMPORT DATAFILE="/home/u58228061/my_project/goods_classification.csv" DBMS=CSV OUT= mylib.goods_classification; RUN; PROC IMPORT DATAFILE="/home/u58228061/my_project/gsquarterly_december-2020-revised.csv" DBMS=CSV OUT= mylib.gsquarterly_december_revised; RUN;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest Updates
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.