Questions tagged [baseline]

243 questions
2
votes
1 answer

How to model a time range generically that will allow a range for any period of time, or a more specific period of time

Imagine if you wanted to model a non-fraction time range, that could be any of the following: "1 hour" (all/any 1 hour period) "1 hour, starting 1pm") (all/any 1 hour periods that start at 1pm) "1 hour, starting 1pm, on Wednesdays" (all/any 1 hour…
marathon
  • 7,881
  • 17
  • 74
  • 137
2
votes
1 answer

Why does Verdana render different in different browsers on different OS - like Windows and OS X?

I discovered Chrome doesn't align Verdana similar to Firefox on OS X. For example, the following CSS rule is applied for comparison: font-family:verdana; font-size:12px; line-height:auto; This image shows the differences between browsers (Chrome…
jaggli
  • 21
  • 5
2
votes
1 answer

Cocoa controls text location?

Is this possible to get the coordinates of where the text drawn in standard (not custom) Cocoa controls? Actually, I need a baseline of the text, the y-axis offset value (relative to the y-origin of the view’s frame rectangle). This is what the…
joedm
1
vote
3 answers

find base href of a given url

I'm modifying a simple php crawler script. one of the modules it uses is a converter of relative urls into absolute urls. For this, I need to find a way to determine the base href of a given url. Otherwise I end up with a bunch of wrongly…
Uno Mein Ame
  • 1,060
  • 5
  • 16
  • 29
1
vote
1 answer

ClearCase: Stop making baseline if there are checkouts

I'm using cleartool to make baselines in my stream, using cleartool mkbl -full If I have files checked out in my view (in my case, always an oversight), I get the warning cleartool: Warning: There are checkouts in view…
JXG
  • 7,263
  • 7
  • 32
  • 63
1
vote
1 answer

How to use R baseline package with txt file as input

I want to use the baseline package in R to correct my RAMAN spectra. My spectra data are in txt files without headers. I know the baseline package needs a matrix with all data in one row. I tried to convert my files and use the baseline package, but…
Ina
  • 13
  • 3
1
vote
0 answers

Extract the baseline and focal length using KITTI 2015 stereo dataset

I am new to image processing and I need to use the KITTI 2015 stereo images for performing a depth estimation using Census transform and hamming distance. For this I to need to find out how to extract the baseline and focal length from the…
1
vote
0 answers

How do we set a custom line height in a TextView?

I am working on a custom TextView where we are highlighting certain words in the String with a green background drawable. The drawable is dependent on the line height for the word it is highlighting and will draw itself according to the top and…
Calvin Rai
  • 816
  • 1
  • 8
  • 17
1
vote
2 answers

Azure ARM - Baseline resources with ARM template

I have created an ARM template for deploying resources into an Azure Resource Group. Is there any way I could use the same ARM template to perform automated "Baseline-Checks" in order to check if the resources have been changed in any way?
1
vote
2 answers

How to make custom baseline for `TextFormField` in Flutter

I want to create a custom baseline for TextFormField in Flutter. The example for what I wanna do is given below.
Feroz Khan
  • 2,396
  • 5
  • 20
  • 37
1
vote
0 answers

Baseline removal for multiple columns

I have a data frame with 300 rows and 666 columns. Each row is basically a spectrum. How to apply a Baseline removal package or any other method for an entire dataset? Any suggestion related to the question would be great and appreciated. Thanks in…
1
vote
1 answer

python BaselineRemoval changes the y value after correction

I am using BaselineRemoval library to correct the CA flux signal data. I am not able to understand why the y axis value changes. Can you tell me why The blue lines are original data and orange is after baselineremoval. I used following code and…
user1631306
  • 4,350
  • 8
  • 39
  • 74
1
vote
1 answer

importing module using pip

I want to import a module called BaselineRemoval using pip, however, after installing it, python (version 3.8) is giving error of : ModuleNotFoundError: No module named 'BaselineRemoval' I am not familiar with dealing with these kinds of things, so…
alex
  • 71
  • 6
1
vote
0 answers

Android Studio 4.1.3. Show Baseline Contextual Menu Option not available

I am a newbie to Android Studio. I'm going through the Android Kotlin google codelab . In step 3, "Step 3: Align the baselines of the two text views", I'm told to click on the textview I just added and use the edit baseline icon. I don't have one…
Mark Ryan
  • 155
  • 1
  • 1
  • 8
1
vote
3 answers

Is there a function in dplyr/forcats to display count and percentages from a dataframe of dichotomous variables?

I frequently get stuck when I want to summarise categorial variables in my dataset. My dataset contains a dichotomous variables (yes/no) per patient. In the below example set , "A-C" are risk factors that the person does or does not have. A <-…