lag 相关问题

滞后是一个常见的词,意思是无法跟上或落后。在实时应用程序中,当应用程序无法满足性能需求或用户输入时,将使用该术语。换句话说,它指的是当应用程序没有跟上它的“实时”概念时,由于与每秒周期速率差,对用户输入的响应迟(可能累积)有关的问题,或者其他问题。

使用 PostgreSQL 查询将表数据转换为账本格式

我在 PostgreSQL 表中有以下数据: ID 数量 开仓金额 成交金额 1 200 1000 1200 2 -500 无效的 无效的 3 -200 无效的 无效的 4 1000 无效的 无效的 我想将这些数据转换成...

回答 1 投票 0

sql server lag函数where条件

数据库里我有+1000,+2000,+3000.....按照之前的值递增。这些有时不会增加,而是减少,我编写了一个列表查询来找出这一点。 选择 NUM...

回答 1 投票 0

GAM 预测器结构:矩阵与长数据.帧格式

我正在拟合一个具有滞后结构的典型 GAM。 gam 有一般形式: g1<-gam(y~te(e, l), data=df) Specifically: #exposure e <- matrix(rnorm(2500, mean = 100, sd = 25), ncol=50) #...

回答 1 投票 0

Postgres 滞后/超前函数过滤器

有人可以帮助我完成查询的最后一步吗? 我有这张桌子小提琴 创建表租金(id整数,开始日期日期,结束日期日期,objekt_id整数,person_id整数); 插入租金...

回答 2 投票 0

TimescaleDB 连续聚合落后

在 TimescaleDB 中,我有一个包含每日平均值的连续聚合,因此存储桶大小为 1 天: 创建物化视图sensors_daily 与(timescaledb.连续,timescaledb.materialized_only=

回答 2 投票 0

SQL 根据时间间隔将多个事务分组为一个事务(LAG 函数?)

我正在使用接受硬币进行操作的前院机器数据(例如喷射清洗/空气)。每个币都是一条交易线。但是,如果

回答 1 投票 0

跟踪自定义 tkinter 是滞后的

由于跟踪方法,我对自定义 tkinter 的性能有一些问题。我在类 App 中有一个跟踪方法,可以跟踪我的所有 StringVars。但我还有一个方法可以跟踪...

回答 1 投票 0

使用特定列中的下一个非空值填充 BigQuery 表中的空值

我有一个具有以下结构的 BigQuery 表: [ { "case_id": "1234567890", "reply_date": "2024-06-25 13:31:07.000000 UTC", “下一个回复目标&q...

回答 1 投票 0

我的 VS 代码状态栏显示“42 个要分析的文件”数字不断增加

它表明了这一点。 有时它会消失并在一段时间后重新出现,我不知道为什么。 我试图研究扩展,看看它是否能解释,但我不确定。 我删除并重新安装...

回答 2 投票 0

MySQL Lead 函数返回 NULL

我有这个MySQL表: ID 姓名 1 西班牙语 2 法语 3 德语 我正在使用这个声明: SELECT id, Name, Lead(Name) OVER (ORDER BY id) AS 'next' from MyTable WHERE Name='French' 预期...

回答 1 投票 0

计算程序步骤

我有一个带有许多循环的“大型”vba 程序,现在我想计算程序启动时各个命令执行的每个步骤,所以也许我可以找到实际上并不执行的循环...

回答 1 投票 0

Postgresql 选择 30 秒时间戳内最接近的最大值行

我需要从 postgres 表中提取数据,我想在其中查看时间戳 30 秒内的附近记录,其中两列匹配并获取具有最大值的值。 ID |...

回答 1 投票 0

雪花获得之前不同的值

我有一个表,可以按 ID 跟踪位置以及设备的发行日期以及与设备关联的产品/配件。该位置一次只能有 1 台设备,并且...

回答 2 投票 0

使用 KableExtra 和 ifelse 语句进行多列条件突出显示

解决方案如下 原始问题:我试图突出显示 KableExtra 表的文本,以指示组观察值逐年增加或减少的位置。但是,我收到了有关

回答 1 投票 0

在Xamarin中滚动CollectionView图片时出现滞后,该怎么办?

当我在 CollectionView 中滚动时,它开始滞后,可能正在加载下一张图片。我能用它做什么?我该如何优化它? 这是 XAML: 当我在 CollectionView 中滚动时,它开始滞后,可能正在加载下一张图片。我能用它做什么?我该如何优化它? 这是 XAML: <Grid BackgroundColor="#00aeef"> <Grid.RowDefinitions> <RowDefinition Height="*"/> </Grid.RowDefinitions> <CollectionView x:Name="myCollectionView" Grid.Row="0"> <CollectionView.ItemTemplate> <DataTemplate> <StackLayout> <Frame Padding="0" BackgroundColor="#00d2ff" Margin="20" CornerRadius="30"> <StackLayout Padding="20"> <Label Text="{Binding Airline}" TextColor ="White" FontSize="30" HorizontalOptions="Center"/> <Image Source="{Binding Url}" HeightRequest="200"/> <Label Text="{Binding Plane, StringFormat='Plane: {0}'}" TextColor ="White" FontSize="15"/> <Label Text="{Binding Airline, StringFormat='Airline: {0}'}" TextColor ="White" FontSize="15"/> <Label Text="{Binding Livery, StringFormat='Livery: {0}'}" TextColor ="White" FontSize="15"/> <Label Text="{Binding Registration, StringFormat='Reg: {0}'}" TextColor ="White" FontSize="15"/> <Label Text="{Binding Airport, StringFormat='Airport: {0}'}" TextColor ="White" FontSize="15"/> <Label Text="{Binding Date, StringFormat='Date: {0}'}" TextColor ="White" FontSize="15"/> <Label Text="{Binding Comment, StringFormat='Comment: {0}'}" TextColor ="White" FontSize="15"/> </StackLayout> </Frame> </StackLayout> </DataTemplate> </CollectionView.ItemTemplate> </CollectionView> </Grid> 这是我的代码: public ShowPlanes() { InitializeComponent(); var db = new SQLiteConnection(_dbPath); var data = db.Table<Airplane>().ToList(); myCollectionView.ItemsSource = data; NavigationPage.SetHasNavigationBar(this, false); } 如果您的图像很大,请尝试将其调整为您需要的尺寸,也许会解决这个问题,下面是非常好的参考。 https://learn.microsoft.com/en-us/samples/xamarin/xamarin-forms-samples/xamformsimageresize/ 如果您的图像很大,例如超过 100KB(每个),那么您可以考虑使用不同的文件名和较小的尺寸(例如 10-20KB)为相同图像创建缩略图。 这将提高您的应用程序的速度。 要调整图像大小,您可以使用以下代码。该功能将保持原始图像的纵横比。此外,代码会将原始图像设置为 72dpi。结果将是一个小的优化文件,准备渲染到您的视图。 using System.Drawing; using System.Drawing.Drawing2D; using System.Drawing.Imaging; ... public static void CreatePreviewImage(string imageFullFilename, string previewFullFilename) { ImageCodecInfo jpgEncoder = GetEncoder(ImageFormat.Jpeg); // Create an Encoder object based on the GUID // for the Quality parameter category. System.Drawing.Imaging.Encoder myEncoder = System.Drawing.Imaging.Encoder.Quality; // Create an EncoderParameters object. // An EncoderParameters object has an array of EncoderParameter // objects. In this case, there is only one // EncoderParameter object in the array. EncoderParameters myEncoderParameters = new EncoderParameters(1); EncoderParameter myEncoderParameter = new EncoderParameter(myEncoder, 75L); //default myEncoderParameters.Param[0] = myEncoderParameter; Bitmap originalimage = (Bitmap)System.Drawing.Image.FromFile(imageFullFilename, true); originalimage.SetResolution(72, 72); int w = originalimage.Width; int h = originalimage.Height; int pw = 0; int ph = 0; h = originalimage.Height * w / originalimage.Width; if (w > h) { pw = 200; ph = h * pw / w; } else { ph = 200; pw = w * ph / h; } Bitmap previewImage = ImageHandlers.ResizeImage(originalimage, pw, ph); previewImage.Save(previewFullFilename, jpgEncoder, myEncoderParameters); } public static Bitmap ResizeImage(Image image, int width, int height) { var h = image.Height; var w = image.Width; if (w > h) { height = h * width / w; } else if( h < w ) { width = w * height / h; } var destRect = new Rectangle(0, 0, width, height); var destImage = new Bitmap(width, height); destImage.SetResolution(image.HorizontalResolution, image.VerticalResolution); using (var graphics = Graphics.FromImage(destImage)) { graphics.CompositingMode = CompositingMode.SourceCopy; graphics.CompositingQuality = CompositingQuality.HighQuality; graphics.InterpolationMode = InterpolationMode.HighQualityBicubic; graphics.SmoothingMode = SmoothingMode.HighQuality; graphics.PixelOffsetMode = PixelOffsetMode.HighQuality; using (var wrapMode = new ImageAttributes()) { wrapMode.SetWrapMode(WrapMode.TileFlipXY); graphics.DrawImage(image, destRect, 0, 0, image.Width, image.Height, GraphicsUnit.Pixel, wrapMode); } } return destImage; } public static ImageCodecInfo GetEncoder(ImageFormat format) { ImageCodecInfo[] codecs = ImageCodecInfo.GetImageDecoders(); foreach (ImageCodecInfo codec in codecs) { if (codec.FormatID == format.Guid) { return codec; } } return null; } 这是调整大小的工作代码: var bitmap = SKBitmap.Decode(Path); int h = bitmap.Height; int w = bitmap.Width; int newWidth = w; int newHeight = h; if (h > 1080 || w > 1080) { int rectHeight = 1080; int rectWidth = 1080; //aspect ratio calculation float W = w; float H = h; float aspect = W / H; await DisplayAlert("aspect", aspect.ToString() + w.ToString() + h.ToString(), "OK"); //new dimensions by aspect ratio newWidth = (int)(rectWidth * aspect); newHeight = (int)(newWidth / aspect); await DisplayAlert("aspect", "h " + newHeight.ToString() + " w " + newWidth.ToString(), "OK"); //if one of the two dimensions exceed the box dimensions if (newWidth > rectWidth || newHeight > rectHeight) { //depending on which of the two exceeds the box dimensions set it as the box dimension and calculate the other one based on the aspect ratio if (newWidth > newHeight) { newWidth = rectWidth; newHeight = (int)(newWidth / aspect); } else { newHeight = rectHeight; newWidth = (int)(newHeight * aspect); } } } var resizedImage = bitmap.Resize(new SKImageInfo(newWidth, newHeight), SKBitmapResizeMethod.Lanczos3); var image = resizedImage.Encode(SKEncodedImageFormat.Jpeg, 80); var path = System.Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData); var filepath = System.IO.Path.Combine(path, fileName); string finalPath = filepath; using (var stream = File.OpenWrite(filepath)) image.SaveTo(stream); return finalPath; } 我检查了你的代码,并通过不同的方式进行了实验,最后,我明白了为什么它会滞后。通过添加滚动视图,还记得修复图像的宽度。你能试试这个代码吗: <Grid BackgroundColor="#00aeef"> <Grid.RowDefinitions> <RowDefinition Height="*"/> </Grid.RowDefinitions> <scrollview> <CollectionView x:Name="myCollectionView" Grid.Row="0"> <CollectionView.ItemTemplate> <DataTemplate> <StackLayout> <Frame Padding="0" BackgroundColor="#00d2ff" Margin="20" CornerRadius="30"> <StackLayout Padding="20"> <Label Text="{Binding Airline}" TextColor ="White" FontSize="30" HorizontalOptions="Center"/> <Image Source="{Binding Url}" HeightRequest="200" WidthRequest="200"/> <Label Text="{Binding Plane, StringFormat='Plane: {0}'}" TextColor ="White" FontSize="15"/> <Label Text="{Binding Airline, StringFormat='Airline: {0}'}" TextColor ="White" FontSize="15"/> <Label Text="{Binding Livery, StringFormat='Livery: {0}'}" TextColor ="White" FontSize="15"/> <Label Text="{Binding Registration, StringFormat='Reg: {0}'}" TextColor ="White" FontSize="15"/> <Label Text="{Binding Airport, StringFormat='Airport: {0}'}" TextColor ="White" FontSize="15"/> <Label Text="{Binding Date, StringFormat='Date: {0}'}" TextColor ="White" FontSize="15"/> <Label Text="{Binding Comment, StringFormat='Comment: {0}'}" TextColor ="White" FontSize="15"/> </StackLayout> </Frame> </StackLayout> </DataTemplate> </CollectionView.ItemTemplate> </CollectionView> </scrollview> </Grid>

回答 4 投票 0

尝试使用列中先前的值在 R 中执行计算

使用下面的数据框作为我想要做的粗略示例,在 b 列中,当 times = 0 时,我有正确的值,但我想对其进行编码,以便当前空白的值将使用 va。 ..

r lag
回答 1 投票 0

Roblox 物理计算延迟

在我的roblox游戏中,你使用火箭发射器来摧毁零件,但是当同时计算大量零件时,这会对所有基于物理的物品(包括重新...

回答 1 投票 0

使用 R 计算期初和期末余额

我试图遵循一个过程,在这个过程中,我每个时期都会对投资做出贡献,投资会随着时间的推移而增长或收缩,然后我就会得到期末余额。下一个时期我采取...

回答 1 投票 0

极其滞后的回收器查看性能

我在 ViewPager 内部有一个 RecyclerView 实现,它的性能非常糟糕。我有两种视图类型,并且正在使用 ViewHolder 模式(所以这不是膨胀或查找视图

回答 2 投票 0

在 Windows Docker 桌面中运行 gui docker 容器(基于 ubuntu)极其滞后

我有一个基于 ubuntu:20.04 并运行 qtcreator 的 docker 容器。我在 Ubuntu 主机上测试了这个容器,它的工作完美且快速。 但是使用 Windows docker 桌面还有额外的...

回答 1 投票 0

© www.soinside.com 2019 - 2024. All rights reserved.