Hello
I am trying to do a simple import from CSV filew into sas data set
I am using import wizard
In the csv file there is no hebrew
I get an error with following message.
what should i do please to solve it?
... View more
Hello
Let's say that I have a data of people who ride bicycle.
I want to learn from the data -
freq(proprtion)of perople who ride Long distance in each weekday
freq(proprtion)of perople who ride short distance in each weekday
(So there are 2 categoris-long/short dsistance)
What is the way to create such bar chart in order to display it
... View more
I have run the following code:
However, the optimal model chosen is one with no hidden layers despite the fact that I set a lowerbound of 1 hidden layer:
Here are some of the individual evaluation of differing numbers of neurons/layers:
What could explain the fact that it trying models with zero layers, or zero neurons in some of the three layers. In the code, I have specifically inserted lower bounds which should stop this from happening? Could this be the result of a non-grid search algorithm?
... View more
Please, has anyone already noticed that SAS Viya makes calculation errors? For example, it calculates the total of 1+6 as 8. Any solutions, please?
... View more
I tried to import a file in csv format in sas but not without problem. First I did it normally like: proc import datafile=reffile out=test_Eems dbms=csv replace; getnames=yes; run; without success and I saw in the log that there could be talk of delimiter ';'. So I added delimiter ';'. proc import datafile=reffile out=test_Eems dbms=csv replace; delimiter=";" ; getnames=yes; run; I get a better result but not always correct because a column (called Bericht) contains all kinds of characters also the semicolon. Of course I get an error in the log. What surprises me is that I could open the same file without problem in Excel or a google sheet but not in Sas. I have converted the same file to an excel file using excel and I could easily read and open it in sas. My question to you is if I could open the file in Excel and google sheet then it should also work in Sas. I would like your help with that. Below are the file that I could not import in csv format but in excel and the log that I got when I tried with csv format
... View more