Create minicharts inside a dataframe - dataframe

I would like to recreate an excel table that has minicharts inside the cells in a python dataframe.
What I want to create looks like this:
does someone has any idea of how to do it?
I havent tried much yet because dont know where to start

Related

show table items as interactive sliders on jupyter notebook

I am using qgrid to show pandas dataframe as a table in jupyter notebook. The code I'm using now is very simple, like:
qgrid_widget = qgrid.show_grid(some_df, show_toolbar=True)
qgrid_widget
Now the table is shown like the following (The table is big, I just show part of it):
For the rest of the work, I need to adjust many values in the table. And, as an experimental work, I don't know yet how the values should be adjusted, so I need to try. Now, to adjust the values, I double-click on the entry and enter the new value. I think a more efficient way is the following: each value in the table is represented on a slider, and I can drag the slider in the table to change the value.
I have tried the following but they don't work:
use ipywidgets.FloatSlider() as the entry of the table. This way, qgrid shows table entries just in plain text, "FloatSlider(value=xx, min=xx, max=xx, step=xxx)".
use ipysheet with FloatSlider(). However, even by following the examples here, the sheet just doesn't display on my jupyter notebook.
Does anyone have an idea for this question? How to use an interactive slider for each value in a table? Thanks!

i cant define sourcedata for vba

I am trying to create a pivot table using vba. My first step is to create pivotcaches. I dont know what to do with sourcedata. I looked up online, people are using like SourceData:=
"Sheet1!R1C1:R4C3". I can not do it because i have to update worksheet everyday and i have thousands of rows and columns. i am thinking to do like ctrl + a (select all the regions) but i dont know what to do and i tried sourcedata:= sheets("nameofmysheet").range("a2"),currentregion. it wont work either. i dont know what to do now. Help me!
Best advice? Record a macro when you create a pivot table and then look at the code generated by Macro 😊 This way you can experiment and create various pivots from various sources. It will help you understand the process.

add subrows in pentaho table component cde

Good afternoon,
I have the necessary data already in a table of pentaho cde. What I want to make it more beautiful and practical is to create sub rows. I do not know what information I have to give so that you can guide me a bit. I would like something similar to the image to remain. Thank you
What I have right now is this:
If it can be I would like that when you click on the second column, all of the third column will be displayed. thank you very much

Excel sort and filter to make a chart

I'm trying to create a program through excel that will sort through a list of names and once it finds all the same names it has to sort on a certain type then once it gets that it has to sort on an ID then total up the hours based on that name type and ID and I have to do this alot of time...then create a chart. I have never used VBA before what is the best way?
As suggested, you can use PivotTables for this. Check http://chandoo.org/wp/2009/08/19/excel-pivot-tables-tutorial/ for a tutorial.
If you wish to learn some VBA, you can check http://www.excel-easy.com/vba.html.
Another useful way is to record your actions as a macro and look at the auto-generated code.

How to create_record at the top of data block in Oracle Forms Builder?

I would like to be able to create a new record at the top of a datablock?
At the moment I have the following code:
first_record;
create_record;
But this creates the record after the first record.... I would like it at the very top...
Does anyone know how to do this?
Thanks,
WW
This isn't possible in forms at the moment.
To accomplish something like this you should make 2 blocks. The first only containing one record to create records. And when you commit something here it will be queried in the second block.