How to replace all missing values ββwith zeros in SAS? I have a text file that I dump in SAS to process some geodata, but whenever it has no value, it interrupts operations. Is there a way to change this without specifying each field? I have over 200.
How do i do this:
data geo_cali_north; set geo_cali_north; if polar_data eq . then 0; if lat_xvar eq . then 0; run;
How can I avoid this for each field?
user2444108
source share