Looking for 364.024/5/6/7/8/9/30/31/32/33/34/35/80/81/82, VL / UE Visualization, Marc Streit et al., 2026S test answers and solutions? Browse our comprehensive collection of verified answers for 364.024/5/6/7/8/9/30/31/32/33/34/35/80/81/82, VL / UE Visualization, Marc Streit et al., 2026S at moodle.jku.at.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
Suppose you need to choose whether to use Plotly or Vega-Altair for creating some charts. Which of the following statements about this choice are true?
Which type of chart does the following piece of Altair code create? Answer only with the chart type (max. 2 words).
import altair as altfrom vega_datasets import data
source = data.cars()
alt.Chart(source).mark_point().encode( x='Horsepower:Q', y='Miles_per_Gallon:Q', color='Origin:N')
Which of the following statements about Vega-Altair are true?
Consider the following code from the Plotly tutorial:
text_widget = widgets.HTML(description="Selection:", value="[]")fig = go.FigureWidget()fig.update_layout(width=700, height=500)scatter = go.Scatter(x=iris["petal_width"], y=iris["sepal_length"], mode="markers")fig.add_trace(scatter)def selection_function(trace, points, selector): inds = points.point_inds text_widget.value = str(inds)fig.data[-1].on_selection(selection_function)Which of the following statements are true?
In the tutorial, we tried to combine a Plotly scatterplot with a Jupyter widget. Which of the following statements about the problems we encountered are true?
Which of the following statements about Jupyter widgets are true?
Select all Seaborn methods that are axes-level variants of the figure-level catplot method.
Which of the following statements about exporting figures from Matplotlib are true?
Which of the following statements about Matplotlib and Seaborn are true.