1,100 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
68
views
Expandable column in react using Cloudscape
I’m working on a use case where we have a table showing weekly data (see attached screenshot). Currently, each week (Week 1, Week 2, etc.) is displayed as a column, and under each week we need to show ...
0
votes
2
answers
85
views
How to expand timeseries data in pandas [duplicate]
There is hourly data for 2 categories, and the value is the same for certain consecutive hours. To save space, the table is compressed as follows -
Input Table:
Category
Datetime
Value
Count
A
1/1/...
1
vote
1
answer
45
views
Expand and linearly interpolate values for in between integers across groups using SQL
I have a table which has a value column, multiple columns on which to group and an "index" column which consists of integer values that are not contiguous. I want to expand the table by ...
0
votes
0
answers
39
views
Hamburger button not expanding in small screen view for Bootstrap 5.3.3
I cannot get the hamburger button to expand on the smallest screen size for my dropdown. I've changed the CDN links and am using bootstrap 5.3.
I've ensured that the ID names are the same and have ...
2
votes
1
answer
44
views
make three cards’ child widgets parallel
How to make three container’ child widgets (title, value, and icon) are always parallel (aligned properly across all cards) ?
Code
GridView(
gridDelegate:
const ...
0
votes
2
answers
69
views
Expand a dataframe row into multiple rows based on string conditions
I have some raw data similar to the dataframe below:
df = pd.DataFrame([{'var1': '220-224 (Even) roadname1', 'var2': 'location 1', 'var3': 'area 1'},
{'var1': 'site of 5 to 9 (odd) ...
0
votes
2
answers
43
views
How to display 2 text in row, text1 can be ellipsis but text2 should be display full length in flutter
Row[Image, Text1, Text2, Image]
Here Text1 is name, Text2 is ID and Image is fixed size25 and need to display at the end of the row.
0
votes
3
answers
45
views
Expand the data set to include all combinations of the values of the variables using R
I have the following snippet of my data set that consists of thousands of observations
and I want to expand this data set using R so as to include all combiations of the first two columns
that is, I ...
-1
votes
1
answer
121
views
Expand an element's hitbox without affecting other elements
note: this didn't seem to be what I meant.
I'm making a menu bar (File, Edit, View, etc) where it would be nice if I could expand the hitbox of the menus to make it harder to let go of your currently ...
2
votes
1
answer
129
views
Expand/Explode Polars rows from column which is a list
I have the following code
import polars as pl
import datetime as dt
from dateutil.relativedelta import relativedelta
def get_3_month_splits(product: str) -> list[str]:
front, start_dt, total_m ...
0
votes
1
answer
136
views
SAPUI5: Odatamodelv2.read with filter cannot read properties of undefined (reading substr)
I have a problem reading data from a model with some filters and expand:
let selectedMaterial = this.getModel("appSettings").getProperty("/selectedLineItemMaterial");
let ...
0
votes
0
answers
47
views
sympy precision control regarding .expand()
Consider the following polynomial expression.
Numerical_Precision =200
xt= Symbol("xt" , real=True)
xt_b=-0.121
test_exp = xt**2+xt +1
The question is how to expand this polynomial ...
2
votes
1
answer
441
views
IntelliJ won't expand collapsed rows
Anytime I create the studentMenu() or profMenu() shown in the screenshot, IntelliJ collapses the rows in that method and will not let me expand them (both via Expand button in row number column or ...
0
votes
1
answer
1k
views
Expand/collapse all Report Builder without using parameter
Is it possible to expand collapse all grouped items on SSRS Report builder like in example on the page below: https://www.sqlchick.com/entries/2010/9/19/expand-or-collapse-all-grouped-items-on-ssrs-...
0
votes
0
answers
86
views
The use of swift macros prevents the execution of other code
I created a unwrap freestanding macro that unwraps optional values.
The implementation looks like the following code:
{ [\(raw: argumentName)] in
guard let \(raw: argumentName) else {
...