Questions tagged [granularity]

Granularity is the extent to which a material or system is composed of distinguishable pieces or grains. It can either refer to the extent to which a larger entity is subdivided, or the extent to which groups of smaller indistinguishable entities have joined together to become larger distinguishable entities.

63 questions
0
votes
1 answer

Change granularity of function plot to make plot look smooth

Using the R plot function to plot another function, how can I increase the granularity so that the graph looks smooth? I.e. something analogous to seq(by=.001)? plot(sin, to=100)
Zaz
  • 46,476
  • 14
  • 84
  • 101
0
votes
1 answer

Table with granulated columns not showing "Null" for missing value (Google Data Studio)

I created a table in Google Data Studio using Google Sheets as the Data Set: I changed the granularity of the date column to "Year month" to group the data in months. As you can see July 2020 is missing from the table. My source data doesn't have…
0
votes
1 answer

Memory access granularity vs Cache line

I'm trying to note the concept of memory access granularity, which I've found mentioned in some articles. It's being said that memory access granularity is [1]: the size in which a processor accesses memory On the other hand, the cache line is…
Joshua Light
  • 101
  • 5
0
votes
3 answers

Which granularity of controller is appropriate in MVC style for a big web site?

We (my team and I) have a big web project that will deal with many users (at least 15,000 users!). In elaboration phase we decided to code in MVC style. We confront a tradeoff (in this project all of actions should be performed by authenticated…
ghedas
  • 325
  • 2
  • 13
0
votes
2 answers

Random number within range and a given granularity in Golang

I've written the following code to create a random number between 0.0 and 10.0. const minRand = 0 const maxRand = 10 v := minRand + rand.Float64()*(maxRand-minRand) However, I would like to set the granularity to 0.05, so having all the digits as…
TPPZ
  • 4,447
  • 10
  • 61
  • 106
0
votes
0 answers

OBIEE 12.2.1.2 Answers: Granular Aggregation in Hierarchy - Versioning

Hierarchy has many different granular values. However, those values are stored with reference to different versions in the db. I.e. Building an analysis with the different hierarchy elements (not the hierarchy itself) works great (granular values…
0
votes
2 answers

Using Prebid's price granularity high

We have our Price Granularity for Prebid set to high. However, since it's capped at $20, if we get a bid for $30 or $40 we're unable to accept it. How can we stick with Price Granularity high with Prebid, but in instances we have a bid north of…
ELB Today
  • 9
  • 2
0
votes
1 answer

Most common granularities in datawarehouse designs

I have been looking for the answer of this question for a while: When asking about granularity, the immediate examples given are: transaction, day, week, month etc. I couldn't find any other type of example. For instance, could we consider 'city',…
TheEsnSiavashi
  • 1,245
  • 1
  • 14
  • 29
0
votes
0 answers

highcharts y-axis granularity

I am in a situation to show highcharts with yaxis tickpositions(this.tickPositions) should be closely aligned to min and max of data points,screenshot for reference by default Highcharts generates tick positions far beyond the min and max of…
Asif
  • 9
  • 3
0
votes
0 answers

LSL instrustion manually

I'm trying to write the LSL instruction manually, and I come to one problem. Let us have. LSL eax , sel So I should get the limit of descriptor that is determined by SEL and place it in EAX. What if the granularity is 1, do i have to take the…
John
  • 1
  • 1
0
votes
2 answers

mdx crossjoin over dimention hierarchy with granular measures results in duplicate statistics of Reporting Services data set

I'v built a SSRS revenue report in Visual Studio 2005 over SSAS 2008 R2 Qube data source for deployment on MS SharePoint 2005 Server. It runs fine (in rus.): (oops, can not post image below 10 points reputation) But the problem is that report's mdx…
Globe
  • 280
  • 2
  • 15
0
votes
1 answer

Is there a way to know what's the extra space that cudaMalloc is going to reserve?

When I use cudaMalloc (100) it reserves more than 100 B (According to some users here it's due to granularity issues and housekeeping information. Is it possible to determine how big this space will be based on the Bytes I need to reserve? Thank you…
Bravado
  • 137
  • 9
0
votes
2 answers

Cube Measure Granularity Changing Over Time

I have been asked by our IT manager to construct an SSAS environment where the same data is stored at different granularities depending on how old it is. For example, we have a point system determined by how many and what type of projects an…
0
votes
1 answer

C++ Modulo to align my data

I am compiling several smaller files into one big file. I am trying to make it so that each small file begins at a certain granularity, in my case 4096. Therefore I am filling the gap between each file. To do that I used //Have a look at the current…
tmighty
  • 10,734
  • 21
  • 104
  • 218
0
votes
0 answers

Clickstream measures at different granularities

This is possibly a simple problem which I have yet to overcome. Consider a cube based on clickstream data. First, I have a fact table based on page views. That is One Row per page view on a site. Measures includes [Views], [Visits], [Bounce Rate]…
Nick
  • 11
  • 1