Answers for "how to count the elements in a given column"

1

Find the value counts for the column 'your_column'

df["your_column"].value_counts()
Posted by: Guest on November-19-2020
0

how to get column count

/**
     * Get the column count
     * @return count of column the result set have
     */
    public static int getColumnCount(){

        int columnCount = 0;

        try {
            ResultSetMetaData rsMetaData = rs.getMetaData();
            columnCount = rsMetaData.getColumnCount();
        } catch (SQLException e) {
            System.out.println("ERROW WHILE GETTING COLUMN COUNT " +e.getMessage());
        }
        return columnCount;
    }
Posted by: Guest on November-30-2020

Code answers related to "how to count the elements in a given column"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language