enter image description here
I’ve tried modifying syntax.
I’m expecting a new dataset an I only get rows, no columns.
I have a spark data frame which contains lists as column values. Is the order of the list elements fixed or can it change for example if I save the data frame and then reload it in a different session.
i want to draw the graph which use the values of a column that used for the GROUPBY.
that particular colume is shown outside the dataframe. so when I am trying to draw graphs I cant able to use that colume. when I use the column name its shows a 'key error'
can I use the first colume, (which is shown outside the dataframe when looking the variable explorer ) for plotting a scatter plot.
or is there is any option to add that colume to a new column as the dataframe?
thanks in advance.
Which is faster?
Applying a 100x100 pandas data frame with Boolean vales to another data frame of the same format
or...
Searching a 100 row column trying to locate a particular cell that is say a 1000 characters long string and contains numbers and symbols
Hi I am new to SSRS and I am trying to create a line graph from the following dataset that has a single line and I am confused with how to achieve this simple task.
column1|column2|column3
1,11,35
If I try and add column 1-3 as values it will show nothing because it is trying to do a separate line per column.
I have tried making a temp table in sql and reformatting it as follows:
values
1
11
35
This works however this causes me to lose the axis names for each value.
How can I achieve a single line in my line graph as well as keeping the axis names?
You're correct in that you need separate rows (i.e. pivoting your data) to meet your chart requirements.
You can need to add another column to your new Dataset to have group names, too:
Just example names, obviously.
In your chart, add the Series and Category as required:
Now you have labels on the axis: