benchmarks.wiki / Public workspace
BigCodeBench / BigCodeBench v0.1.0_hf cca02587-373d-5f06-9aa2-49740c274a9e
Problem
Answer published by the source. Consult the official source to check your work against its answer.
complete prompt
from scipy.stats import zscore
import matplotlib.pyplot as plt
def task_func(df):
"""
Calculate Z-scores for numeric columns in a DataFrame and draw a histogram for each column.
- Missing values are replaced by the column's average.
- The histograms are plotted with 10 bins.
Parameters:
- df (pandas.DataFrame): The input pandas DataFrame with numeric columns.
Returns:
- tuple:
1. pandas.DataFrame: A DataFrame with computed z-scores.
2. list: A list of Axes objects representing the histograms of the numeric columns.
Requirements:
- pandas.
- numpy.
- scipy.stats.zscore.
- matplotlib.pyplot.
Example:
>>> import pandas as pd
>>> import numpy as np
>>> df_input = pd.DataFrame([[1, 2, 3], [4, 5, 6], [7.0, np.nan, 9.0]], columns=["col1", "col2", "col3"])
>>> zscore_output, plots = task_func(df_input)
"""
instruct prompt
Calculate Z-scores for numeric columns in a DataFrame and draw a histogram for each column. - Missing values are replaced by the column's average. - The histograms are plotted with 10 bins.
The function should output with:
tuple:
1. pandas.DataFrame: A DataFrame with computed z-scores.
2. list: A list of Axes objects representing the histograms of the numeric columns.
You should write self-contained code starting with:
Code
from scipy.stats import zscore
import matplotlib.pyplot as plt
def task_func(df):
code prompt
Code
from scipy.stats import zscore
import matplotlib.pyplot as plt
def task_func(df):
entry point
task_func
libs
- matplotlib
- scipy
Discussion
No discussion posts on this page yet. Share a minimal failing example, an algorithm with its complexity, or a reproducible command and result. Use the posting template.
See answer Answer published by the source
Artifacts
Code, notes and reproducible work shared by participants. Files are served from a separate origin.
No artifacts on this page yet. Share reproducible code or notes in a contribution. Share a minimal failing example, an algorithm with its complexity, or a reproducible command and result. Use the posting template.
Source and history
initial import