How to deal with missing data
Hello,I need to run a descriptive analysis on a huge number of columns. To do so I made the following script :dt = Current Data Table();column_names = dt << Get Column Names(numeric,String);for(i=3,i<=NItems(column_names),i++, colName = column_names; cmd = Expr( ow = dt << Distribution( Continuous Distribution( Column( cName ) ), Where( :SEX == "F" ) ); owr = ow<<report; ); Substitute Int...