Hello, I have a CSV file containing 100 samples a 10 observations each. How do I perform logistic regression on each individual sample from the one csv-file? How do I extract the values I'm interested in to a vector, such as estimatates and p-values? proc logistic data = WORK.IMPORT; class x y; model y = x; run; Here is an extract from the CSV-file: "","num","y","x" "1",1,1,0 "2",1,1,1 "3",1,1,1 "4",1,1,1 "5",1,1,0 "6",1,1,0 "7",1,1,1 "8",1,1,1 "9",1,1,1 "10",1,1,1 "11",1,1,1 "12",1,1,1 "13",1,1,0 "14",1,0,0 "15",1,1,0 "16",1,1,0 "17",1,1,0 "18",1,1,1 "19",1,1,1 "20",1,1,0 "21",1,0,0 "22",1,1,1 "23",1,0,0 "24",1,1,1 "25",1,1,1 "26",1,1,1 "27",1,1,0 "28",1,1,1 "29",1,0,0 "30",1,1,0 "31",1,1,1 "32",1,1,0 "33",1,1,1 "34",1,1,0 "35",1,0,0 "36",1,1,0 "37",1,1,0 "38",1,0,1 "39",1,1,1 "40",1,1,1 "41",1,1,0 Grateful for all the help I can get!
... View more